29 lines
770 B
JSON
29 lines
770 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "Node",
|
|
"lib": ["es2022"],
|
|
"declaration": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"experimentalDecorators": true,
|
|
"strictPropertyInitialization": true,
|
|
"skipLibCheck": true,
|
|
"typeRoots": ["./node_modules/@types"],
|
|
"rootDir": ".",
|
|
"outDir": "dist"
|
|
},
|
|
"include": ["bin/**/*", "lib/**/*", "test/**/*"],
|
|
"exclude": ["node_modules", "cdk.out", "dist"]
|
|
}
|