We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c956a47 commit 94045eaCopy full SHA for 94045ea
src/transpilers/swc.ts
@@ -96,7 +96,9 @@ export function create(createOptions: SwcTranspilerOptions): Transpiler {
96
// if `alwaysStrict` is disabled, remembering that `strict` defaults `alwaysStrict` to true
97
(alwaysStrict === false || (alwaysStrict !== true && strict !== true)) &&
98
// if noImplicitUseStrict is enabled
99
- noImplicitUseStrict === true ? false : true;
+ noImplicitUseStrict === true
100
+ ? false
101
+ : true;
102
return {
103
sourceMaps: sourceMap,
104
// isModule: true,
0 commit comments