| 123456789101112131415161718192021222324252627282930 |
- {
- "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"
- ]
- }
|