You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/compiler/types.ts
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5780,6 +5780,7 @@ namespace ts {
5780
5780
NoAsciiEscaping=1<<24,// When synthesizing nodes that lack an original node or textSourceNode, we want to write the text on the node with ASCII escaping substitutions.
5781
5781
/*@internal*/TypeScriptClassWrapper=1<<25,// The node is an IIFE class wrapper created by the ts transform.
5782
5782
/*@internal*/NeverApplyImportHelper=1<<26,// Indicates the node should never be wrapped with an import star helper (because, for example, it imports tslib itself)
5783
+
/*@internal*/IgnoreSourceNewlines=1<<27,// Overrides `printerOptions.preserveNewlines` to print this node (and all descendants) with default whitespace.
0 commit comments