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