fix certificate selection

This commit is contained in:
Thomas Nordquist
2022-02-27 13:33:22 +01:00
parent e4add31793
commit 13b8f8d5da
42 changed files with 23477 additions and 5471 deletions

View File

@@ -43,7 +43,7 @@ export class MqttSource implements DataSource<MqttOptions> {
try {
url = Url.parse(urlStr)
} catch (error) {
this.stateMachine.setError(error)
this.stateMachine.setError(error as Error)
throw error
}

View File

@@ -1,11 +1,15 @@
{
"compileOnSave": true,
"compilerOptions": {
"skipLibCheck": true,
"noImplicitAny": true,
"strictNullChecks": true,
"outDir": "./build",
"strict": true,
"lib": ["es2017", "dom"],
"lib": [
"es2017",
"dom"
],
"sourceMap": true
},
"includes": [
@@ -18,4 +22,4 @@
"**/*.d.ts",
"typings"
]
}
}