31 lines
650 B
JSON
31 lines
650 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ES2020",
|
||
|
"module": "commonjs",
|
||
|
"lib": [
|
||
|
"es2020"
|
||
|
],
|
||
|
"declaration": true,
|
||
|
"strict": true,
|
||
|
"noImplicitAny": true,
|
||
|
"strictNullChecks": true,
|
||
|
"noImplicitThis": true,
|
||
|
"alwaysStrict": true,
|
||
|
"noUnusedLocals": false,
|
||
|
"noUnusedParameters": false,
|
||
|
"noImplicitReturns": true,
|
||
|
"noFallthroughCasesInSwitch": false,
|
||
|
"inlineSourceMap": true,
|
||
|
"inlineSources": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"strictPropertyInitialization": false,
|
||
|
"typeRoots": [
|
||
|
"./node_modules/@types"
|
||
|
]
|
||
|
},
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"cdk.out"
|
||
|
]
|
||
|
}
|