mirror of
https://github.com/kevinwatt/yt-dlp-mcp.git
synced 2025-08-10 16:09:14 +03:00
- Add custom error types and error codes - Add configuration validation - Add dependency checks - Add safe cleanup handling - Improve code organization
29 lines
673 B
JSON
29 lines
673 B
JSON
{
|
|
"compilerOptions": {
|
|
"removeComments": false,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedParameters": true,
|
|
"module": "ES2020",
|
|
"moduleResolution": "node",
|
|
"pretty": true,
|
|
"target": "ES2020",
|
|
"outDir": "lib",
|
|
"lib": ["dom", "es2015"],
|
|
"esModuleInterop": true,
|
|
"allowJs": true
|
|
},
|
|
"formatCodeOptions": {
|
|
"indentSize": 2,
|
|
"tabSize": 2
|
|
},
|
|
"include": ["src/**/*.mts", "src/types/*.d.ts"],
|
|
"exclude": ["node_modules", "lib"]
|
|
}
|