From 8534b430beff7f122091d19d2536b5cc798860ce Mon Sep 17 00:00:00 2001 From: Mohamed Hegazy Date: Thu, 20 Apr 2017 15:11:40 -0700 Subject: [PATCH] Add missing compiler options --- src/server/protocol.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/server/protocol.ts b/src/server/protocol.ts index 3c99707e6ab..428b69027c7 100644 --- a/src/server/protocol.ts +++ b/src/server/protocol.ts @@ -2277,15 +2277,19 @@ namespace ts.server.protocol { allowSyntheticDefaultImports?: boolean; allowUnreachableCode?: boolean; allowUnusedLabels?: boolean; + alwaysStrict?: boolean; baseUrl?: string; charset?: string; + checkJs?: boolean; declaration?: boolean; declarationDir?: string; disableSizeLimit?: boolean; + downlevelIteration?: boolean; emitBOM?: boolean; emitDecoratorMetadata?: boolean; experimentalDecorators?: boolean; forceConsistentCasingInFileNames?: boolean; + importHelpers?: boolean; inlineSourceMap?: boolean; inlineSources?: boolean; isolatedModules?: boolean; @@ -2325,6 +2329,7 @@ namespace ts.server.protocol { skipDefaultLibCheck?: boolean; sourceMap?: boolean; sourceRoot?: string; + strict?: boolean; strictNullChecks?: boolean; suppressExcessPropertyErrors?: boolean; suppressImplicitAnyIndexErrors?: boolean;