tsconfig.json 758 B

1234567891011121314151617181920212223242526
  1. {
  2. "compilerOptions": {
  3. "allowSyntheticDefaultImports": true,
  4. "skipLibCheck": true,
  5. "outDir": "./dist",
  6. "lib": ["dom", "es5", "es6", "es7", "esnext"],
  7. "target": "es5",
  8. "module": "commonjs",
  9. "moduleResolution": "node",
  10. "emitDecoratorMetadata": true,
  11. "experimentalDecorators": true,
  12. "sourceMap": true,
  13. "keyofStringsOnly": true,
  14. "noImplicitAny": true,
  15. "noImplicitReturns": true,
  16. "noImplicitThis": true,
  17. "noUnusedLocals": false,
  18. "strict": true,
  19. "strictNullChecks": true,
  20. "types": ["isomorphic-fetch", "node"],
  21. "esModuleInterop": true,
  22. "declaration": true
  23. },
  24. "include": ["src/**/*", "db/**/*", "model/**/*"],
  25. "exclude": ["node_modules/**/*", "generated/**/*", "tools/**/*"]
  26. }