HomeAssistant MCP

{ "extends": "./tsconfig.json", "compilerOptions": { // Inherit base configuration, but override with more relaxed settings for tests "strict": false, "strictNullChecks": false, "strictFunctionTypes": false, "strictPropertyInitialization": false, "noImplicitAny": false, "noImplicitThis": false, // Additional relaxations for test files "allowUnreachableCode": true, "allowUnusedLabels": true, // Specific test-related compiler options "types": [ "bun-types", "@types/jest" ] }, "include": [ "__tests__/**/*" ] }