mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2025-01-08 14:31:55 +00:00
f54b5c02d7
Vuetify was updated to support it and we no longer use vite-plugin-pages and vite-plugin-vue-layouts which previously were our blockers Signed-off-by: GitHub <noreply@github.com>
44 lines
906 B
JSON
44 lines
906 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"moduleResolution": "Bundler",
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"experimentalDecorators": true,
|
|
"removeComments": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"types": [
|
|
"axios",
|
|
"@intlify/unplugin-vue-i18n/messages",
|
|
"unplugin-icons/types/vue",
|
|
"vite/client",
|
|
"vuetify",
|
|
"vue"
|
|
]
|
|
},
|
|
"vueCompilerOptions": {
|
|
"strictTemplates": true,
|
|
"htmlAttributes": ["aria-*", "data-*"]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.vue",
|
|
"**/**/*.json",
|
|
"types/**/*.d.ts",
|
|
".eslintrc.cjs",
|
|
"vite.config.ts"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|