jellyfin-vue/frontend/tsconfig.json
Fernando Fernández f54b5c02d7
refactor(typescript): switch to moduleResolution bundler
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>
2023-12-07 10:55:55 +00:00

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"]
}