Skip to content

Commit

Permalink
fix: Changes so devcontainer works
Browse files Browse the repository at this point in the history
  • Loading branch information
zachowj committed Oct 11, 2022
1 parent 35e40fe commit bddfde3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/common/services/ComparatorService.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { NodeMessage } from 'node-red';
import selectn from 'selectn';
import { HassEntity } from 'types/home-assistant';

import HomeAssistant from '../../homeAssistant/HomeAssistant';
import { HassEntity } from '../../types/home-assistant';
import TransformState, { TransformType } from '../TransformState';
import JSONataService from './JSONataService';
import NodeRedContextService, {
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const nodes: Record<NodeType, any> = {
[NodeType.UpdateConfig]: updateConfigNode,
};

export = async (RED: NodeAPI): Promise<void> => {
export default async (RED: NodeAPI): Promise<void> => {
setRED(RED);
createRoutes();

Expand Down
6 changes: 3 additions & 3 deletions tsconfig.editor.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"lib": ["es2016", "dom", "es6"],
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"forceConsistentCasingInFileNames": true
},
"files": ["src/editor.ts"]
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
}
}

0 comments on commit bddfde3

Please sign in to comment.