mirror of
https://github.com/vbenjs/vben-admin-thin-next.git
synced 2025-01-23 17:50:22 +08:00
47 lines
864 B
JSON
47 lines
864 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strictFunctionTypes": false,
|
|
"jsx": "react",
|
|
"baseUrl": ".",
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"experimentalDecorators": true,
|
|
"lib": [
|
|
"dom",
|
|
"esnext"
|
|
],
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"/@/*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "@vuedx/typescript-plugin-vue"
|
|
}
|
|
],
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"**/*.js"
|
|
]
|
|
}
|