diff --git a/src/services/Block.ts b/src/services/Block.ts index 65680f173..2c5ab439d 100644 --- a/src/services/Block.ts +++ b/src/services/Block.ts @@ -232,7 +232,7 @@ export default class Block { } _makeProxy(props: ObjectT) { - const handleEventBus = (key: string | symbol, value: any) => { + const handleEventBus = (key: string | symbol, value: unknown) => { this.eventBus().emit(Block.EVENTS.FLOW_CDU, this, { ...this, [key]: value, diff --git a/tsconfig.json b/tsconfig.json index 710c22a28..2216bc52a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,7 +13,6 @@ "strict": false, "sourceMap": true, "strictNullChecks": true, - "noImplicitAny": true, "noUnusedLocals": true, "noUnusedParameters": true, "noFallthroughCasesInSwitch": true