mirror of
https://github.com/pretix/pretix.git
synced 2026-05-03 14:54:04 +00:00
- vite starts with `python manage.py runserver` - add templatetags to simply load vite hmr and entry points - add eslint (recheck rules) - enable non-strict ts
20 lines
410 B
JSON
20 lines
410 B
JSON
{
|
|
"include": ["src/pretix/static/**/*", "src/pretix/static/**/*.vue"],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
},
|
|
"strict": false,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"noErrorTruncation": true,
|
|
"noImplicitThis": true,
|
|
"isolatedModules": true,
|
|
"types": ["node", "events"]
|
|
}
|
|
}
|