0
0
mirror of https://github.com/jellyfin/jellyfin-vue.git synced 2025-06-07 08:02:03 +00:00
Files
jellyfin-vue/frontend/tsconfig.json
Fernando Fernández fb620197d9 feat: use IndexedDB for api layer storage (#2652)
Signed-off-by: Fernando Fernández <ferferga@hotmail.com>
2025-05-18 09:37:33 +00:00

30 lines
448 B
JSON

{
"extends": "@jellyfin-vue/configs/typescript",
"compilerOptions": {
"baseUrl": ".",
"lib": [
"ESNext",
"DOM"
],
"types": [
"axios",
"@jellyfin-vue/i18n",
"unplugin-vue-router/client",
"vite/client",
"vuetify",
"vue"
]
},
"exclude": [
"dist",
"node_modules",
"coverage"
],
"include": [
"**/*.ts",
"**/*.vue",
"**/*d.ts",
"**/*.json"
]
}