2021-10-16 16:16:58 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-03-09 16:27:52 +08:00
|
|
|
"target": "ESNext",
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "bundler",
|
2021-10-16 16:16:58 +08:00
|
|
|
"strict": false,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"importHelpers": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"strictFunctionTypes": false,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"allowJs": false,
|
|
|
|
"resolveJsonModule": true,
|
2024-03-09 16:27:52 +08:00
|
|
|
"lib": [
|
|
|
|
"ESNext",
|
|
|
|
"DOM"
|
|
|
|
],
|
2021-10-16 16:16:58 +08:00
|
|
|
"paths": {
|
2024-03-09 16:27:52 +08:00
|
|
|
"@/*": [
|
|
|
|
"src/*"
|
|
|
|
],
|
|
|
|
"@build/*": [
|
|
|
|
"build/*"
|
|
|
|
]
|
2021-10-16 16:16:58 +08:00
|
|
|
},
|
2022-08-22 21:34:55 +08:00
|
|
|
"types": [
|
|
|
|
"node",
|
|
|
|
"vite/client",
|
|
|
|
"element-plus/global",
|
|
|
|
"@pureadmin/table/volar",
|
2023-05-12 13:27:40 +08:00
|
|
|
"@pureadmin/descriptions/volar"
|
2023-06-05 15:44:49 +08:00
|
|
|
]
|
2021-10-16 16:16:58 +08:00
|
|
|
},
|
|
|
|
"include": [
|
2022-11-27 09:56:19 +08:00
|
|
|
"mock/*.ts",
|
2021-10-16 16:16:58 +08:00
|
|
|
"src/**/*.ts",
|
|
|
|
"src/**/*.tsx",
|
|
|
|
"src/**/*.vue",
|
|
|
|
"types/*.d.ts",
|
|
|
|
"vite.config.ts"
|
|
|
|
],
|
2024-03-09 16:27:52 +08:00
|
|
|
"exclude": [
|
|
|
|
"dist",
|
|
|
|
"**/*.js",
|
|
|
|
"node_modules"
|
|
|
|
]
|
|
|
|
}
|