Files
homeassistant-mcp/tsconfig.json
jango-blockchained bc1dc8278a refactor: optimize configuration and tool implementations
- Standardized error handling across tool implementations
- Improved return type consistency for tool execution results
- Simplified configuration parsing and type definitions
- Enhanced type safety for various configuration schemas
- Cleaned up and normalized tool response structures
- Updated SSE and event subscription tool implementations
2025-02-04 00:56:45 +01:00

44 lines
814 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "dist",
"rootDir": ".",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"sourceMap": true,
"allowJs": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"types": [
"bun-types"
],
"typeRoots": [
"./node_modules/@types"
],
"lib": [
"ES2022"
],
"baseUrl": ".",
"paths": {
"*": [
"node_modules/*"
]
}
},
"include": [
"src/**/*",
"__tests__/**/*",
"jest.config.ts"
],
"exclude": [
"node_modules",
"dist",
"coverage"
]
}