mirror of
https://github.com/pretix/pretix.git
synced 2026-07-31 09:15:08 +00:00
29 lines
645 B
JSON
29 lines
645 B
JSON
{
|
|
"include": [
|
|
"src/pretix/static/**/*",
|
|
"src/pretix/static/**/*.vue",
|
|
"src/pretix/plugins/webcheckin/**/*",
|
|
"src/pretix/plugins/webcheckin/**/*.vue",
|
|
"src/pretix/plugins/wallet/**/*",
|
|
"src/pretix/plugins/wallet/**/*.vue"
|
|
],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {},
|
|
"strict": false,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"target": "es2025",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"noErrorTruncation": true,
|
|
"noImplicitThis": true,
|
|
"isolatedModules": true,
|
|
"types": ["node", "events"]
|
|
},
|
|
"vueCompilerOptions": {
|
|
"plugins": ["@vue/language-plugin-pug"]
|
|
}
|
|
}
|