mirror of
https://gitee.com/yiming_chang/vue-pure-admin.git
synced 2024-11-29 17:57:37 +08:00
53 lines
1.0 KiB
JSON
53 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"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,
|
|
"lib": [
|
|
"ESNext",
|
|
"DOM"
|
|
],
|
|
"paths": {
|
|
"@/*": [
|
|
"src/*"
|
|
],
|
|
"@build/*": [
|
|
"build/*"
|
|
]
|
|
},
|
|
"types": [
|
|
"node",
|
|
"vite/client",
|
|
"element-plus/global",
|
|
"@pureadmin/table/volar",
|
|
"@pureadmin/descriptions/volar"
|
|
]
|
|
},
|
|
"include": [
|
|
"mock/*.ts",
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
"types/*.d.ts",
|
|
"vite.config.ts"
|
|
],
|
|
"exclude": [
|
|
"dist",
|
|
"**/*.js",
|
|
"node_modules"
|
|
]
|
|
} |