Files
tunarr/server/tsconfig.test.json
Christian Benincasa a748408fcc feat!: implement local media libraries (#1406)
Initial implementation of local media libraries. Includes local scanners
for movie and TV library types. Saves extracted metadata locally.

Some things are missing, including:
* Saving all metadata locally, including genres, actors, etc.
* blurhash extraction - this is computationally expensive at scale and
  should be done async
* Hooking up subtitle extraction to new subtitle DB tables
2025-10-14 16:41:58 -04:00

18 lines
378 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"lib": [
"ESNext",
"DOM" // We have to declare this so vitest doesn't explode
],
},
"include": [
"./src/**/*.ts",
"./scripts/**/*.ts",
"./tests/**/*.ts",
],
"exclude": [
"./src/**/*.ignore.ts",
"./streams/**/*.ts"
]
}