Files
yt-dlp-mcp/tsconfig.json
kevinwatt 8b1a44d7b4 feat: improve error handling and add initialization checks
- Add custom error types and error codes
- Add configuration validation
- Add dependency checks
- Add safe cleanup handling
- Improve code organization
2025-02-21 00:34:18 +08:00

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"]
}