diff --git a/packages/api/src/console.ts b/packages/api/src/console.ts index bf69ec72..81566745 100644 --- a/packages/api/src/console.ts +++ b/packages/api/src/console.ts @@ -19,7 +19,7 @@ enum LogLevel { } export class MiaoScriptConsole implements Console { - Console: NodeJS.ConsoleConstructor + Console: any memory: any private static sourceMaps: { [key: string]: SourceMapBuilder } = {} @@ -190,7 +190,7 @@ export class MiaoScriptConsole implements Console { countReset(label?: string): void { throw new Error("Method not implemented.") } - dir(obj: any, options?: NodeJS.InspectOptions): void { + dir(obj: any, options?: any): void { throw new Error("Method not implemented.") } dirxml(...data: any[]): void { diff --git a/packages/polyfill/src/xml-http-request.ts b/packages/polyfill/src/xml-http-request.ts index 2d1b49f5..0d292288 100644 --- a/packages/polyfill/src/xml-http-request.ts +++ b/packages/polyfill/src/xml-http-request.ts @@ -74,7 +74,7 @@ type HttpHeader = { [key: string]: string } const executor = Executors.newCachedThreadPool() export class XMLHttpRequest { - private _timeout: number = 5000; + private _timeout: number = 120000; private _responseType: ResponseType = 'text'; private _withCredentials: boolean