diff --git a/src/compiler/types.ts b/src/compiler/types.ts index 55b7222796d..729fc7ab57c 100644 --- a/src/compiler/types.ts +++ b/src/compiler/types.ts @@ -2411,9 +2411,9 @@ namespace ts { /* @internal */ export const enum StructureIsReused { - Completely, - SafeModules, - Not + Not = 0, + SafeModules = 1 << 0, + Completely = 1 << 1, } export interface CustomTransformers {