You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.1 KiB
46 lines
1.1 KiB
{
|
|
"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",
|
|
"@pureadmin/table/volar",
|
|
"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", "index.html"]
|
|
}
|