Files
Fernando Fernández bd0809953b chore(typescript): remove deprecated baseUrl option
The baseUrl tsconfig option was deprecated in TypeScript 6.

Also fixed the TypeScript monorepo config, making type checking isolated to each project and resolution of monorepo's types outside the package that it's running the check.

Signed-off-by: Fernando Fernández <ferferga@hotmail.com>
2026-04-07 18:58:12 +02:00

21 lines
277 B
JSON

{
"extends": "@jellyfin-vue/configs/typescript",
"compilerOptions": {
"lib": [
"ESNext",
"DOM"
]
},
"exclude": [
"dist",
"node_modules",
"coverage"
],
"include": [
"**/*.ts",
"**/*.vue",
"**/*d.ts",
"**/*.json"
]
}