mirror of
https://gitee.com/yiming_chang/vue-pure-admin.git
synced 2024-11-30 10:17:41 +08:00
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "Node",
|
|
"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": ["dom", "esnext"],
|
|
"incremental": true,
|
|
"paths": {
|
|
"/@/*": ["src/*"],
|
|
"@build/*": ["build/*"],
|
|
"/#/*": ["types/*"]
|
|
},
|
|
"types": [
|
|
"node",
|
|
"vite/client",
|
|
"element-plus/global",
|
|
"unplugin-vue-define-options",
|
|
"@pureadmin/descriptions/volar"
|
|
],
|
|
"typeRoots": ["./node_modules/@types/", "./types"]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
"types/*.d.ts",
|
|
"mock/*.ts",
|
|
"vite.config.ts"
|
|
],
|
|
"exclude": ["node_modules", "dist", "**/*.js"]
|
|
}
|