12345678910111213141516171819202122232425262728 |
- {
- "compilerOptions": {
- "ignoreDeprecations": "5.0",
- "outDir": "build/dist",
- "module": "esnext",
- "target": "esnext",
- "lib": ["esnext", "dom"],
- "sourceMap": true,
- "baseUrl": ".",
- "jsx": "react",
- "allowSyntheticDefaultImports": true,
- "moduleResolution": "node",
- "forceConsistentCasingInFileNames": true,
- "noImplicitReturns": true,
- "suppressImplicitAnyIndexErrors": true,
- "noUnusedLocals": true,
- "allowJs": true,
- "skipLibCheck": true,
- "experimentalDecorators": true,
- "strict": true,
- "paths": {
- "@/*": ["./src/*"],
- "@@/*": ["./src/.umi/*"],
- "@@@/*": ["./*"]
- }
- },
- "exclude": ["node_modules", "build", "dist1", "dist", "scripts", "src/.umi/*", "webpack", "jest"]
- }
|