gf-vben-admin/tsconfig.json
2020-10-11 00:05:29 +08:00

35 lines
665 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/*"
]
}
},
"exclude": [
"node_modules",
"dist",
"**/*.js"
]
}