1234567891011121314151617181920212223242526272829303132333435
  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. "resolveJsonModule": true,
  13. "allowSyntheticDefaultImports": true,
  14. "paths": {
  15. "@/*": [
  16. "src/*"
  17. ],
  18. "@@/*": [
  19. "src/.umi/*"
  20. ],
  21. "@umijs/max": [
  22. "E:\\work\\jgz\\admin\\node_modules\\umi"
  23. ],
  24. "@umijs/max/typings": [
  25. "src/.umi/typings"
  26. ]
  27. }
  28. },
  29. "include": [
  30. "../../.umirc.ts",
  31. "../../**/*.d.ts",
  32. "../../**/*.ts",
  33. "../../**/*.tsx"
  34. ]
  35. }