tsconfig.json 778 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. "forceConsistentCasingInFileNames": true,
  13. "noImplicitReturns": true,
  14. "suppressImplicitAnyIndexErrors": true,
  15. "noUnusedLocals": true,
  16. "allowJs": true,
  17. "skipLibCheck": true,
  18. "experimentalDecorators": true,
  19. "strict": true,
  20. "paths": {
  21. "@/*": ["./src/*"]
  22. }
  23. },
  24. "exclude": [
  25. "node_modules",
  26. "build",
  27. "dist",
  28. "scripts",
  29. "acceptance-tests",
  30. "webpack",
  31. "jest",
  32. "src/setupTests.ts",
  33. "tslint:latest",
  34. "tslint-config-prettier"
  35. ]
  36. }