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.
27 lines
605 B
27 lines
605 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"],
|
||
|
"types": [
|
||
|
"@dcloudio/types",
|
||
|
"vite/client",
|
||
|
"@types/node",
|
||
|
"vitest/globals"
|
||
|
],
|
||
|
"baseUrl": "./",
|
||
|
"paths": {
|
||
|
"@/*": ["src/*"],
|
||
|
"@components/*": ["src/components/*"]
|
||
|
}
|
||
|
},
|
||
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
|
||
|
}
|