tsconfig.json 775 B

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