Skip to content

Commit 11cac43

Browse files
author
Kanchalai Tanglertsampan
committed
Fix linting
1 parent 444a55f commit 11cac43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/compiler/transformers/module/module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -835,10 +835,10 @@ namespace ts {
835835
const parseTreeNode = getParseTreeNode(node);
836836
if (parseTreeNode && !shouldAppendEsModuleMarker) {
837837
// class declaration get down-level transformed to be variable statement
838-
shouldAppendEsModuleMarker = (parseTreeNode.kind === SyntaxKind.VariableStatement ||parseTreeNode.kind === SyntaxKind.ClassDeclaration || parseTreeNode.kind === SyntaxKind.ImportEqualsDeclaration)
838+
shouldAppendEsModuleMarker = (parseTreeNode.kind === SyntaxKind.VariableStatement || parseTreeNode.kind === SyntaxKind.ClassDeclaration || parseTreeNode.kind === SyntaxKind.ImportEqualsDeclaration)
839839
&& hasModifier(parseTreeNode, ModifierFlags.Export);
840840
}
841-
841+
842842
if (hasModifier(node, ModifierFlags.Export)) {
843843
let modifiers: NodeArray<Modifier>;
844844

0 commit comments

Comments
 (0)