Skip to content

Commit 94045ea

Browse files
committed
lint-fix
1 parent c956a47 commit 94045ea

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/transpilers/swc.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,9 @@ export function create(createOptions: SwcTranspilerOptions): Transpiler {
9696
// if `alwaysStrict` is disabled, remembering that `strict` defaults `alwaysStrict` to true
9797
(alwaysStrict === false || (alwaysStrict !== true && strict !== true)) &&
9898
// if noImplicitUseStrict is enabled
99-
noImplicitUseStrict === true ? false : true;
99+
noImplicitUseStrict === true
100+
? false
101+
: true;
100102
return {
101103
sourceMaps: sourceMap,
102104
// isModule: true,

0 commit comments

Comments
 (0)