initial setup of vue

This commit is contained in:
2023-04-07 17:53:45 +02:00
parent 5eccbb336a
commit d72ba805b9
27 changed files with 204 additions and 865 deletions

19
src/webapp/jsconfig.json Normal file
View File

@@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "es5",
"module": "esnext",
"baseUrl": "./",
"moduleResolution": "node",
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
}
}