first draft migrating widget to vue3/vite

This commit is contained in:
rash
2026-02-11 15:12:43 +01:00
parent 2898f06f56
commit 333dc56ef7
38 changed files with 4171 additions and 4 deletions

View File

@@ -1,9 +1,13 @@
{
"include": ["src/pretix/static/**/*", "src/pretix/static/**/*.vue"],
"include": [
"src/pretix/static/**/*",
"src/pretix/static/**/*.vue",
"src/pretix/plugins/webcheckin/**/*",
"src/pretix/plugins/webcheckin/**/*.vue"
],
"compilerOptions": {
"baseUrl": ".",
"paths": {
},
"paths": {},
"strict": false,
"allowJs": true,
"checkJs": true,
@@ -15,5 +19,8 @@
"noImplicitThis": true,
"isolatedModules": true,
"types": ["node", "events"]
},
"vueCompilerOptions": {
"plugins": ["@vue/language-plugin-pug"]
}
}