tsconfig.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "compilerOptions": {
  3. "moduleResolution": "node",
  4. "outDir": "public/dist",
  5. "target": "es5",
  6. "lib": [
  7. "es6",
  8. "dom"
  9. ],
  10. "rootDir": "public/",
  11. "jsx": "react",
  12. "module": "esnext",
  13. "declaration": false,
  14. "allowSyntheticDefaultImports": true,
  15. "esModuleInterop": true,
  16. "forceConsistentCasingInFileNames": true,
  17. "importHelpers": true, // importing helper functions from tslib
  18. "noEmitHelpers": true, // disable emitting inline helper functions
  19. "removeComments": false, // comments are needed by angular injections
  20. "inlineSourceMap": false,
  21. "sourceMap": true,
  22. "noEmitOnError": false,
  23. "emitDecoratorMetadata": false,
  24. "experimentalDecorators": true,
  25. "noImplicitReturns": true,
  26. "noImplicitThis": false,
  27. "noImplicitUseStrict": false,
  28. "noImplicitAny": false,
  29. "noUnusedLocals": true,
  30. "baseUrl": "public",
  31. "pretty": true,
  32. "paths": {
  33. "app": [
  34. "app"
  35. ]
  36. }
  37. },
  38. "include": [
  39. "public/app/**/*.ts",
  40. "public/app/**/*.tsx",
  41. "public/test/**/*.ts"
  42. ]
  43. }