tsconfig.json 622 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "moduleResolution": "node",
  6. "importHelpers": true,
  7. "jsx": "react-jsx",
  8. "esModuleInterop": true,
  9. "sourceMap": true,
  10. "baseUrl": "./",
  11. "strict": true,
  12. "paths": {
  13. "@/*": ["src/*"],
  14. "@@/*": ["src/.umi/*"]
  15. },
  16. "allowSyntheticDefaultImports": true
  17. },
  18. "include": [
  19. "mock/**/*",
  20. "src/**/*",
  21. "config/**/*",
  22. ".umirc.ts",
  23. "typings.d.ts"
  24. ],
  25. "exclude": [
  26. "node_modules",
  27. "lib",
  28. "es",
  29. "dist",
  30. "typings",
  31. "**/__test__",
  32. "test",
  33. "docs",
  34. "tests"
  35. ]
  36. }