tsconfig.json 881 B

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