Files
tunarr/types/tsconfig.json
Christian Benincasa f13e3bbefb feat!: expose advanced transcode parameters (#1347)
This feature is mainly to provide a migration path from legacy transcode
pipeline users to the new pipeline in preparation of the former's
deprecation and removal. In general, users should not need to use these
first set of parameters (disabling various hardware accelerated
features) as doing so implies a bug that should be fixed. However, this
should provide a more smooth path for legacy holdouts to get onto the
new pipeline and allow them to experiment with the full, new pipeline,
without potentially wrecking their existing setup (via multiple
transcode configs).

Closes #1090
2025-08-27 16:48:46 -04:00

36 lines
894 B
JSON

{
"compilerOptions": {
"rootDirs": [
"./src"
],
"target": "es2022",
"module": "NodeNext",
"lib": [
"ES2022"
],
"declaration": true,
"declarationMap": true,
"moduleResolution": "nodenext",
"rootDir": ".",
"outDir": "dist",
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"alwaysStrict": true,
"sourceMap": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitAny": false,
"noImplicitThis": false,
"strictNullChecks": true,
},
"include": [
"./src/**/*.ts",
],
"exclude": [
"./**/*.test.ts",
"./dist/**"
]
}