tsconfig.json 558 B

12345678910111213141516171819202122
  1. {
  2. "compilerOptions": {
  3. "emitDecoratorMetadata": true,
  4. "experimentalDecorators": true,
  5. "sourceMap": true,
  6. "declaration": true,
  7. "noImplicitAny": false,
  8. "removeComments": true,
  9. "noLib": true,
  10. "outDir": "public_gen/app",
  11. "target": "ES5",
  12. "rootDir": "public/app",
  13. "sourceRoot": "public/app",
  14. "module": "amd",
  15. "noEmitOnError": true
  16. },
  17. "fileGlobs": [
  18. "./public/app/**/*.ts",
  19. "!./node_modules/**",
  20. "!./public_gen/**",
  21. ]
  22. }