tsconfig.json 657 B

123456789101112131415161718192021222324252627
  1. {
  2. "compilerOptions": {
  3. "sourceMap": true,
  4. "declaration": true,
  5. "outDir": "public_gen",
  6. "noImplicitAny": false,
  7. "target": "es5",
  8. "rootDir": "public/",
  9. "module": "system",
  10. "noEmitOnError": true,
  11. "emitDecoratorMetadata": true,
  12. "experimentalDecorators": true,
  13. "noImplicitReturns":false,
  14. "noImplicitThis":false,
  15. "noImplicitUseStrict":false,
  16. "noUnusedLocals":false,
  17. "moduleResolution": "classic"
  18. },
  19. "include": [
  20. "public/app/**/*.ts"
  21. ],
  22. "exclude": [
  23. "public/vendor/**/*",
  24. "public/**/*.d.ts"
  25. ]
  26. }