build: update scaffolding to current create-vue template

This commit is contained in:
Sebin Nyshkim 2023-09-01 12:29:06 +02:00
parent 0335006ee5
commit 0c8a3b0348
3 changed files with 27 additions and 11 deletions

12
tsconfig.app.json Normal file
View file

@ -0,0 +1,12 @@
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"include": ["globals.d.ts", "env.d.ts", "src/**/*", "src/**/*.vue"],
"exclude": ["src/**/__tests__/*"],
"compilerOptions": {
"composite": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
}
}