12345678910111213141516171819202122232425 |
- {
- "compilerOptions": {
- "target": "esnext",
- "module": "esnext",
- "moduleResolution": "node",
- "importHelpers": true,
- "jsx": "react",
- "esModuleInterop": true,
- "sourceMap": true,
- "baseUrl": "./",
- "strict": true,
- "paths": {
- "@/*": ["src/*"],
- "@@/*": ["src/.umi/*"]
- },
- "allowSyntheticDefaultImports": true
- },
- "include": [
- "mock/**/*",
- "src/**/*",
- "config/**/*",
- ".umirc.ts",
- "typings.d.ts"
- ]
- }
|