Files
eva/packages/zigbee/tsconfig.json
kenneth b55d99dd9e
Some checks failed
Build and Publish Docker Image / build-and-push (push) Failing after 27s
feat: initial zigbee control implementation
Co-authored-by: Ona <no-reply@ona.com>
2025-10-28 01:11:57 +00:00

30 lines
713 B
JSON

{
"compilerOptions": {
// Environment setup & latest features
"lib": ["ESNext"],
"target": "ESNext",
"module": "Preserve",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
}
}