tsconfig.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "compilerOptions": {
  3. "moduleResolution": "node",
  4. "outDir": "public/dist",
  5. "target": "es5",
  6. "lib": ["es6", "dom"],
  7. "rootDirs": ["public/"],
  8. "jsx": "react",
  9. "module": "esnext",
  10. "declaration": false,
  11. "allowSyntheticDefaultImports": true,
  12. "esModuleInterop": true,
  13. "forceConsistentCasingInFileNames": true,
  14. "importHelpers": true,
  15. "noEmitHelpers": true,
  16. "removeComments": false,
  17. "inlineSourceMap": false,
  18. "sourceMap": true,
  19. "noEmitOnError": false,
  20. "emitDecoratorMetadata": false,
  21. "experimentalDecorators": true,
  22. "strictNullChecks": false,
  23. "noImplicitReturns": true,
  24. "noImplicitThis": true,
  25. "noImplicitUseStrict": false,
  26. "noImplicitAny": true,
  27. "downlevelIteration": true,
  28. "noUnusedLocals": true,
  29. "baseUrl": "public",
  30. "pretty": true,
  31. "typeRoots": ["node_modules/@types", "public/app/types"],
  32. "paths": {
  33. "app": ["app"],
  34. "sass": ["sass"]
  35. },
  36. "skipLibCheck": true,
  37. "preserveSymlinks": true
  38. },
  39. "include": [
  40. "public/app/**/*.ts",
  41. "public/app/**/*.tsx",
  42. "public/test/**/*.ts",
  43. "public/vendor/**/*.ts",
  44. "public/e2e-test/**/*.ts"
  45. ]
  46. }