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
780 B
27 lines
780 B
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": false,
|
|
"lib": ["esnext", "dom"],
|
|
"types": ["vite/client"],
|
|
"plugins": [{ "name": "@vuedx/typescript-plugin-vue" }],
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"views/*": ["./src/views"],
|
|
"utils/*": ["./src/utils"],
|
|
"comp/*": ["./src/components"],
|
|
"api/*": ["./src/api"],
|
|
"router/*": ["./src/router"],
|
|
"store/*": ["./src/store"],
|
|
"assets/*": ["./src/assets"],
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.vue"],
|
|
"exclude": ["node_modules", "dist", "public", "tests"]
|
|
}
|
|
|