tsconfig.json 690 B

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