From 263cc0cf58eaaf14e22d977accba30d2d3d73f4d Mon Sep 17 00:00:00 2001 From: Filip Skokan Date: Fri, 8 Apr 2022 15:55:20 +0200 Subject: [PATCH] chore: ignore type errors for node's webcrypto --- src/runtime/node/webcrypto.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/node/webcrypto.ts b/src/runtime/node/webcrypto.ts index f981db65..cb09fbd0 100644 --- a/src/runtime/node/webcrypto.ts +++ b/src/runtime/node/webcrypto.ts @@ -1,7 +1,7 @@ import * as crypto from 'crypto' import * as util from 'util' -// @ts-expect-error +// @ts-ignore const webcrypto = crypto.webcrypto export default webcrypto