Fix more lint

This commit is contained in:
Nathan Bierema 2021-08-24 22:12:45 -04:00
parent c4b34bcd07
commit 7e10f53b95
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ let socket: SCClientSocket;
let store: MiddlewareAPI<Dispatch<StoreAction>, StoreState>;
function emit({ message: type, id, instanceId, action, state }: EmitAction) {
socket.emit(id ? 'sc-' + id : 'respond', { type, action, state, instanceId });
socket.emit(id ? `sc-${id}` : 'respond', { type, action, state, instanceId });
}
function startMonitoring(channel: string) {

View File

@ -3,5 +3,5 @@
"compilerOptions": {
"outDir": "lib"
},
"include": ["src"]
"include": ["demo", "src"]
}