tsconfig.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. "noImplicitReturns": true,
  23. "noImplicitThis": true,
  24. "noImplicitUseStrict": false,
  25. "noImplicitAny": true,
  26. "downlevelIteration": true,
  27. "noUnusedLocals": true,
  28. "baseUrl": "public",
  29. "pretty": true,
  30. "typeRoots": ["node_modules/@types", "public/app/types"],
  31. "paths": {
  32. "app": ["app"],
  33. "sass": ["sass"]
  34. },
  35. "skipLibCheck": true,
  36. "preserveSymlinks": true
  37. },
  38. "include": [
  39. "public/app/**/*.ts",
  40. "public/app/**/*.tsx",
  41. "public/test/**/*.ts",
  42. "public/vendor/**/*.ts",
  43. "public/e2e-test/**/*.ts"
  44. ]
  45. }