tsconfig.json 745 B

1234567891011121314151617181920212223242526272829
  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": false,
  13. "emitDecoratorMetadata": false,
  14. "experimentalDecorators": false,
  15. "noImplicitReturns": true,
  16. "noImplicitThis": false,
  17. "noImplicitUseStrict":false,
  18. "moduleResolution": "classic"
  19. },
  20. "include": [
  21. "public/app/**/*.ts",
  22. "public/app/**/*.tsx",
  23. "public/test/**/*.ts"
  24. ],
  25. "exclude": [
  26. "public/vendor/**/*",
  27. "public/**/*.d.ts"
  28. ]
  29. }