mirror of
https://gitee.com/fantastic-admin/basic.git
synced 2024-11-29 18:48:31 +08:00
50 lines
1.0 KiB
JSON
50 lines
1.0 KiB
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ESNext",
|
||
|
"jsx": "preserve",
|
||
|
"lib": [
|
||
|
"ESNext",
|
||
|
"DOM",
|
||
|
"DOM.Iterable"
|
||
|
],
|
||
|
"moduleDetection": "force",
|
||
|
"useDefineForClassFields": true,
|
||
|
"baseUrl": "./",
|
||
|
"module": "ESNext",
|
||
|
"moduleResolution": "Bundler",
|
||
|
"paths": {
|
||
|
"@/*": [
|
||
|
"src/*"
|
||
|
],
|
||
|
"#/*": [
|
||
|
"src/types/*"
|
||
|
]
|
||
|
},
|
||
|
"resolveJsonModule": true,
|
||
|
"types": [
|
||
|
"vite/client",
|
||
|
"vite-plugin-pages/client",
|
||
|
"vite-plugin-vue-meta-layouts/client",
|
||
|
"vite-plugin-app-loading/client",
|
||
|
"element-plus/global"
|
||
|
],
|
||
|
"allowImportingTsExtensions": true,
|
||
|
"allowJs": false,
|
||
|
"strict": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"noEmit": true,
|
||
|
"sourceMap": true,
|
||
|
"esModuleInterop": true,
|
||
|
"isolatedModules": true,
|
||
|
"skipLibCheck": true
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*.ts",
|
||
|
"src/**/*.d.ts",
|
||
|
"src/**/*.tsx",
|
||
|
"src/**/*.vue"
|
||
|
]
|
||
|
}
|