20 lines
463 B
JSON
20 lines
463 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es6",
|
||
|
"module": "esnext",
|
||
|
"strict": true,
|
||
|
"jsx": "preserve",
|
||
|
"importHelpers": true,
|
||
|
"moduleResolution": "node",
|
||
|
"esModuleInterop": true,
|
||
|
"skipLibCheck": true,
|
||
|
"outDir": "./dist",
|
||
|
"baseUrl": ".",
|
||
|
"types": ["vite-plugin-vue-type-imports", "vue"],
|
||
|
"paths": {
|
||
|
"@/*": ["./src/*"]
|
||
|
},
|
||
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
|
||
|
},
|
||
|
"include": ["src/**/*"]
|
||
|
}
|