mirror of
https://github.com/chrisbenincasa/tunarr.git
synced 2026-04-18 09:03:35 -04:00
53 lines
1.4 KiB
JSON
53 lines
1.4 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "NodeNext",
|
|
"lib": [
|
|
"ESNext",
|
|
],
|
|
"moduleResolution": "nodenext",
|
|
"resolveJsonModule": true,
|
|
"rootDir": ".",
|
|
"outDir": "dist",
|
|
"allowSyntheticDefaultImports": true,
|
|
"importHelpers": true,
|
|
"alwaysStrict": true,
|
|
"sourceMap": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"types": [
|
|
"vitest/globals",
|
|
"vitest/importMeta",
|
|
],
|
|
"noEmit": true,
|
|
"declaration": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"esModuleInterop": true,
|
|
"noErrorTruncation": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
"rewriteRelativeImportExtensions": true,
|
|
"skipLibCheck": true,
|
|
},
|
|
"include": [
|
|
"./src/**/*",
|
|
"./scripts/**/*",
|
|
],
|
|
"exclude": [
|
|
"./src/**/*.ignore.ts",
|
|
"./streams/**/*.ts",
|
|
"./src/testing/ffmpeg/**"
|
|
]
|
|
} |