tsconfig.json 650 B

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