Skip to content

Commit 66e84c5

Browse files
committed
Updated build configuration and added panels
### UPDATED - TypeScript build files. ### ADDED - Panel documentation for "Ademco LYNX/ADT QuickConnect - Emergency Keys PE 95/FA 96/APA 99". v3.2.9
1 parent 7467c32 commit 66e84c5

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "homebridge-adt-pulse",
33
"displayName": "Homebridge ADT Pulse",
4-
"version": "3.2.8",
4+
"version": "3.2.9",
55
"description": "Homebridge security system platform for ADT Pulse",
66
"main": "./build/index.js",
77
"exports": "./build/index.js",

src/lib/items.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -649,6 +649,14 @@ export const deviceSecurityPanels: DeviceSecurityPanels = [
649649
typeModel: 'Security Panel - LYNX/QuickConnect',
650650
},
651651
},
652+
{
653+
description: 'Ademco LYNX/ADT QuickConnect - Emergency Keys PE 95/FA 96/APA 99',
654+
panel: {
655+
emergencyKeys: 'Button: Personal Emergency (Zone 95) Button: Fire Alarm (Zone 96) Button: Audible Panic Alarm (Zone 99)',
656+
manufacturerProvider: null,
657+
typeModel: 'Security Panel - LYNX/QuickConnect',
658+
},
659+
},
652660
{
653661
description: 'DSC Impassa SCW9057',
654662
panel: {

tsconfig.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
{
22
"compilerOptions": {
3-
"allowJs": true,
3+
"allowJs": false,
44
"allowSyntheticDefaultImports": true,
55
"baseUrl": "./",
66
"esModuleInterop": true,
77
"forceConsistentCasingInFileNames": true,
8+
"incremental": false,
9+
"isolatedModules": false,
10+
"jsx": "preserve",
811
"lib": [
912
"ESNext"
1013
],
1114
"module": "ESNext",
12-
"moduleResolution": "Bundler",
15+
"moduleResolution": "Node",
16+
"noEmit": false,
1317
"noFallthroughCasesInSwitch": true,
1418
"noImplicitAny": true,
1519
"noImplicitReturns": true,
@@ -20,9 +24,11 @@
2024
"./src/*"
2125
]
2226
},
27+
"plugins": [],
2328
"removeComments": true,
2429
"resolveJsonModule": true,
2530
"rootDir": "./src",
31+
"skipLibCheck": false,
2632
"sourceMap": true,
2733
"strict": true,
2834
"target": "ESNext",
@@ -34,7 +40,8 @@
3440
]
3541
},
3642
"include": [
37-
"./src"
43+
"**/*.ts",
44+
"**/*.tsx"
3845
],
3946
"exclude": [
4047
"node_modules"

0 commit comments

Comments
 (0)