mirror of https://gitee.com/lmlz_0/dc-ui.git
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.
32 lines
847 B
32 lines
847 B
8 months ago
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "esnext",
|
||
|
"useDefineForClassFields": true,
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"strict": true,
|
||
|
"jsx": "preserve",
|
||
|
"sourceMap": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"esModuleInterop": true,
|
||
|
"lib": ["esnext", "dom"],
|
||
|
"baseUrl": ".",
|
||
|
"allowJs": true,
|
||
|
"paths": {
|
||
|
"@/*": ["src/*"]
|
||
|
},
|
||
|
"outDir": "dist",
|
||
|
"types": ["vite/client", "element-plus/global"],
|
||
|
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
|
||
|
"allowSyntheticDefaultImports": true /* 允许默认导入 */,
|
||
|
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*.ts",
|
||
|
"src/**/*.js",
|
||
|
"src/**/*.vue",
|
||
|
"src/types/**/*.d.ts"
|
||
|
],
|
||
|
"exclude": ["node_modules", "dist", "**/*.js"]
|
||
|
}
|