2021-03-01 15:26:05 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-11-10 12:33:22 +08:00
|
|
|
"target": "ESNext",
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "bundler",
|
2021-03-01 15:26:05 +08:00
|
|
|
"strict": false,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"importHelpers": true,
|
|
|
|
"experimentalDecorators": true,
|
2021-09-16 23:16:54 +08:00
|
|
|
"strictFunctionTypes": false,
|
2021-03-01 15:26:05 +08:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
2021-04-22 17:31:50 +08:00
|
|
|
"isolatedModules": true,
|
2021-03-01 15:26:05 +08:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"baseUrl": ".",
|
2021-08-19 11:13:14 +08:00
|
|
|
"allowJs": false,
|
2021-10-11 15:14:00 +08:00
|
|
|
"resolveJsonModule": true,
|
2023-11-10 12:33:22 +08:00
|
|
|
"lib": [
|
|
|
|
"ESNext",
|
|
|
|
"DOM"
|
|
|
|
],
|
2021-03-01 15:26:05 +08:00
|
|
|
"paths": {
|
2023-11-10 12:33:22 +08:00
|
|
|
"@/*": [
|
|
|
|
"src/*"
|
|
|
|
],
|
|
|
|
"@build/*": [
|
|
|
|
"build/*"
|
|
|
|
]
|
2021-03-01 15:26:05 +08:00
|
|
|
},
|
2022-06-24 11:49:39 +08:00
|
|
|
"types": [
|
|
|
|
"node",
|
|
|
|
"vite/client",
|
|
|
|
"element-plus/global",
|
2022-06-26 14:00:56 +08:00
|
|
|
"@pureadmin/table/volar",
|
2023-05-11 20:26:58 +08:00
|
|
|
"@pureadmin/descriptions/volar"
|
2023-06-04 21:54:05 +08:00
|
|
|
]
|
2021-03-01 15:26:05 +08:00
|
|
|
},
|
|
|
|
"include": [
|
2022-11-27 02:25:09 +08:00
|
|
|
"mock/*.ts",
|
2021-03-01 15:26:05 +08:00
|
|
|
"src/**/*.ts",
|
|
|
|
"src/**/*.tsx",
|
|
|
|
"src/**/*.vue",
|
2021-08-29 10:20:59 +08:00
|
|
|
"types/*.d.ts",
|
|
|
|
"vite.config.ts"
|
2021-03-01 15:26:05 +08:00
|
|
|
],
|
2023-11-10 12:33:22 +08:00
|
|
|
"exclude": [
|
|
|
|
"dist",
|
|
|
|
"**/*.js",
|
|
|
|
"node_modules"
|
|
|
|
]
|
|
|
|
}
|