Enable typescript support

This commit is contained in:
Jan Bader 2022-01-31 20:47:32 +00:00
parent a7178e39c9
commit e0981630ab
3 changed files with 2592 additions and 52 deletions

View File

@ -19,6 +19,7 @@
"devDependencies": {
"@vitejs/plugin-vue": "^2.0.0",
"@vue/cli-plugin-babel": "5.0.0-beta.7",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-service": "5.0.0-beta.7",
"@vuetify/vite-plugin": "^1.0.0-alpha.3",
"sass": "^1.38.0",

10
web/tsconfig.json Normal file
View File

@ -0,0 +1,10 @@
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
// this enables stricter inference for data properties on `this`
"strict": true,
"jsx": "preserve",
"moduleResolution": "node"
}
}

File diff suppressed because it is too large Load Diff