From 5d9c871d9576df30865c081ee8a972ef8437d54d Mon Sep 17 00:00:00 2001 From: Mohamed Hegazy Date: Thu, 26 May 2016 17:12:13 -0700 Subject: [PATCH] Mark diagnostics, and skipDefaultLibCheck as internal --- src/compiler/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/compiler/types.ts b/src/compiler/types.ts index c240fd561c8..4a66fc42ef0 100644 --- a/src/compiler/types.ts +++ b/src/compiler/types.ts @@ -2455,7 +2455,7 @@ namespace ts { /* @internal */ configFilePath?: string; // When options come from a config file, its path is recorded here declaration?: boolean; declarationDir?: string; - diagnostics?: boolean; + /* @internal */ diagnostics?: boolean; emitBOM?: boolean; emitDecoratorMetadata?: boolean; experimentalDecorators?: boolean; @@ -2497,7 +2497,7 @@ namespace ts { rootDir?: string; rootDirs?: RootPaths; skipLibCheck?: boolean; - /* @internal */ skipDefaultLibCheck?: boolean; + skipDefaultLibCheck?: boolean; sourceMap?: boolean; sourceRoot?: string; strictNullChecks?: boolean;