mirror of
https://github.com/vbenjs/gf-vben-admin.git
synced 2025-01-24 04:10:20 +08:00
27 lines
650 B
JSON
27 lines
650 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strictFunctionTypes": false,
|
|
"jsx": "react",
|
|
"baseUrl": ".",
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"experimentalDecorators": true,
|
|
"lib": ["dom", "esnext"],
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"/@/*": ["src/*"],
|
|
"/@design/": ["src/design/index.less"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|