From 91c239bc741a7770e637a7b413123427e7dfa4fe Mon Sep 17 00:00:00 2001 From: Songkeys Date: Fri, 20 Aug 2021 20:53:47 +0800 Subject: [PATCH] chore: Fix typo in type definition (#2116) --- node-swc/src/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node-swc/src/types.ts b/node-swc/src/types.ts index de61a3fb2d0..db2b1ba0e17 100644 --- a/node-swc/src/types.ts +++ b/node-swc/src/types.ts @@ -725,7 +725,7 @@ export interface BaseModuleConfig { * * Defaults to `true`. */ - strict_mode?: boolean; + strictMode?: boolean; /** * Changes Babel's compiled import statements to be lazily evaluated when their imported bindings are used for the first time.