Jiarenxiang | 38dcb05 | 2025-03-13 16:40:09 +0800 | [diff] [blame^] | 1 | { |
| 2 | "compilerOptions": { |
| 3 | "types": ["node"], |
| 4 | "target": "esnext", |
| 5 | "module": "esnext", |
| 6 | "moduleResolution": "node", |
| 7 | "importHelpers": true, |
| 8 | "jsx": "preserve", |
| 9 | "esModuleInterop": true, |
| 10 | "sourceMap": true, |
| 11 | "baseUrl": "./", |
| 12 | "skipLibCheck": true, |
| 13 | "experimentalDecorators": true, |
| 14 | "strict": true, |
| 15 | "resolveJsonModule": true, |
| 16 | "allowSyntheticDefaultImports": true, |
| 17 | "paths": { |
| 18 | "@/*": ["./src/*"], |
| 19 | "@@/*": ["./src/.umi/*"], |
| 20 | "@@test/*": ["./src/.umi-test/*"] |
| 21 | } |
| 22 | }, |
| 23 | "include": ["./**/*.d.ts", "./**/*.ts", "./**/*.tsx"] |
| 24 | } |