tsconfig-base.json 920 B

1234567891011121314151617181920212223242526
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "commonjs",
  5. "strict": true,
  6. "noImplicitAny": true,
  7. "noUnusedLocals": true,
  8. "noImplicitReturns": true,
  9. "moduleResolution": "node",
  10. "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
  11. "esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
  12. "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
  13. "declaration": true,
  14. "resolveJsonModule": true,
  15. "types" : [
  16. "node"
  17. ],
  18. "forceConsistentCasingInFileNames": true,
  19. "baseUrl": "."
  20. },
  21. "exclude": [
  22. "node_modules",
  23. "**/*.spec.ts",
  24. "**/*.d.ts"
  25. ]
  26. }