tsconfig.json 740B

12345678910111213141516171819202122232425262728293031323334
  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. "experimentalDecorators": true,
  18. "strict": true,
  19. "paths": {
  20. "@/*": ["./src/*"]
  21. }
  22. },
  23. "exclude": [
  24. "node_modules",
  25. "build",
  26. "scripts",
  27. "acceptance-tests",
  28. "webpack",
  29. "jest",
  30. "src/setupTests.ts",
  31. "tslint:latest",
  32. "tslint-config-prettier"
  33. ]
  34. }