mirror of
https://github.com/chrisbenincasa/tunarr.git
synced 2026-04-18 09:03:35 -04:00
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
18 lines
378 B
JSON
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"
|
|
]
|
|
} |