gf-vben-admin/tsconfig.json

35 lines
665 B
JSON
Raw Normal View History

2020-09-28 20:19:10 +08:00
{
"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,
2020-10-10 23:09:58 +08:00
"lib": [
"dom",
"esnext"
],
2020-09-28 20:19:10 +08:00
"incremental": true,
"skipLibCheck": true,
"paths": {
2020-10-10 23:09:58 +08:00
"/@/*": [
"src/*"
]
2020-09-28 20:19:10 +08:00
}
},
2020-10-10 23:09:58 +08:00
"exclude": [
"node_modules",
"dist",
"**/*.js"
]
2020-09-28 20:19:10 +08:00
}