step: migrate to vue.js

This commit is contained in:
2026-06-27 14:16:26 +02:00
parent e1a32ecd01
commit 1da5c4fefc
17 changed files with 865 additions and 415 deletions
+8 -3
View File
@@ -5,6 +5,8 @@
"lib": ["ES2023", "DOM"],
"types": ["vite/client"],
"skipLibCheck": true,
"jsx": "preserve",
"jsxImportSource": "vue",
/* Bundler mode */
"moduleResolution": "bundler",
@@ -14,10 +16,13 @@
"noEmit": true,
/* Linting */
"noUnusedLocals": true,
"noUnusedParameters": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src"]
"include": ["src"],
"vueCompilerOptions": {
"experimentalRuntimeMode": "runtime"
}
}