From 1c0ca7ce1d9f8a147e1ff00c63ed15475437fa98 Mon Sep 17 00:00:00 2001 From: Mohamed Hegazy Date: Wed, 8 Feb 2017 19:09:22 -0800 Subject: [PATCH] Remove properties from tsconfig.json that defaults to false --- src/compiler/commandLineParser.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/compiler/commandLineParser.ts b/src/compiler/commandLineParser.ts index 1a388c9e96a..adbb879d5ec 100644 --- a/src/compiler/commandLineParser.ts +++ b/src/compiler/commandLineParser.ts @@ -641,9 +641,7 @@ namespace ts { /* @internal */ export const defaultInitCompilerOptions: CompilerOptions = { module: ModuleKind.CommonJS, - target: ScriptTarget.ES5, - noImplicitAny: false, - sourceMap: false, + target: ScriptTarget.ES5 }; let optionNameMapCache: OptionNameMap;