tsconfig-base.json 946 B

123456789101112131415161718192021222324252627
  1. {
  2. "compilerOptions": {
  3. "target": "es2017",
  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. "skipLibCheck": true,
  16. "types" : [
  17. "node"
  18. ],
  19. "forceConsistentCasingInFileNames": true,
  20. "baseUrl": "."
  21. },
  22. "exclude": [
  23. "node_modules",
  24. "**/*.spec.ts",
  25. "**/*.d.ts"
  26. ]
  27. }