tsconfig.json 598 B

1234567891011121314151617181920212223
  1. {
  2. "compilerOptions": {
  3. "target": "ES2018",
  4. "module": "commonjs",
  5. "lib": ["es2018"],
  6. "declaration": true,
  7. "strict": true,
  8. "noImplicitAny": true,
  9. "strictNullChecks": true,
  10. "noImplicitThis": true,
  11. "alwaysStrict": true,
  12. "noUnusedLocals": false,
  13. "noUnusedParameters": false,
  14. "noImplicitReturns": true,
  15. "noFallthroughCasesInSwitch": false,
  16. "inlineSourceMap": true,
  17. "inlineSources": true,
  18. "experimentalDecorators": true,
  19. "strictPropertyInitialization": false,
  20. "typeRoots": ["./node_modules/@types"]
  21. },
  22. "exclude": ["cdk.out"]
  23. }