tsconfig.json 850 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "compilerOptions": {
  3. "outDir": "build/dist",
  4. "module": "esnext",
  5. "target": "esnext",
  6. "lib": ["esnext", "dom"],
  7. "sourceMap": true,
  8. "baseUrl": ".",
  9. "jsx": "react",
  10. "allowSyntheticDefaultImports": true,
  11. "moduleResolution": "node",
  12. "rootDirs": ["/src", "/test", "/mock", "./typings"],
  13. "forceConsistentCasingInFileNames": true,
  14. "noImplicitReturns": true,
  15. "suppressImplicitAnyIndexErrors": true,
  16. "noUnusedLocals": true,
  17. "allowJs": true,
  18. "experimentalDecorators": true,
  19. "strict": true,
  20. "paths": {
  21. "@/*": ["./src/*"]
  22. }
  23. },
  24. "include": ["./src", "config/defaultSettings.ts"],
  25. "exclude": [
  26. "node_modules",
  27. "build",
  28. "scripts",
  29. "acceptance-tests",
  30. "webpack",
  31. "jest",
  32. "src/setupTests.ts",
  33. "tslint:latest",
  34. "tslint-config-prettier"
  35. ]
  36. }