We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b137251 commit 91781c2Copy full SHA for 91781c2
src/core/execute.ts
@@ -41,7 +41,7 @@ function nodeExecutor(wasms: string[], outFolder: string, imports: Imports) {
41
if (!importObject[moduleName]) {
42
importObject[moduleName] = {};
43
}
44
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-explicit-any
45
(importObject[moduleName] as any)[funcName] = (...args: any[]): any => {
46
// notify that a default function has been called
47
console.log(`Default stub called for ${moduleName}.${funcName}, args:`, args);
0 commit comments