diff options
Diffstat (limited to 'cli/js/repl.ts')
-rw-r--r-- | cli/js/repl.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/repl.ts b/cli/js/repl.ts index c84be68b1..79273ed33 100644 --- a/cli/js/repl.ts +++ b/cli/js/repl.ts @@ -35,7 +35,7 @@ function isRecoverableError(e: Error): boolean { // Returns `true` if `close()` is called in REPL. // We should quit the REPL when this function returns `true`. function isCloseCalled(): boolean { - // @ts-ignore + // @ts-expect-error return globalThis.closed; } |