File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ function capitalize(s: string): string {
52
52
53
53
async function getZigbee2MQTTVersion ( includeCommitHash = true ) : Promise < { commitHash ?: string ; version : string } > {
54
54
const packageJSON = await import ( '../../package.json' ) ;
55
+ // @ts -expect-error typing incorrect
55
56
const version = packageJSON . version ;
56
57
let commitHash : string | undefined ;
57
58
Original file line number Diff line number Diff line change 1
1
{
2
2
"compilerOptions" : {
3
3
"allowSyntheticDefaultImports" : true ,
4
- "module" : " commonjs " ,
4
+ "module" : " Node16 " ,
5
5
"esModuleInterop" : true ,
6
6
"target" : " ES2022" ,
7
7
"lib" : [" ES2022" ],
8
8
"strict" : true ,
9
9
"noImplicitAny" : true ,
10
10
"noImplicitThis" : true ,
11
- "moduleResolution" : " node" ,
12
11
"declaration" : true ,
13
12
"declarationMap" : true ,
14
13
"outDir" : " dist" ,
You can’t perform that action at this time.
0 commit comments