mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2026-09-03 05:10:26 +03:00
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>
21 lines
277 B
JSON
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"
|
|
]
|
|
}
|