fd701fc16f
* fix: add vite client types * chore: update
22 lines
513 B
JSON
22 lines
513 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"target": "es2016",
|
|
"lib": ["DOM", "ESNext"],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"types": ["vite/client"],
|
|
"plugins": [{ "name": "@vuedx/typescript-plugin-vue" }],
|
|
"paths": {
|
|
"/~/*": ["src/*"]
|
|
}
|
|
},
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|