Remove properties from tsconfig.json that defaults to false

This commit is contained in:
Mohamed Hegazy 2017-02-08 19:09:22 -08:00
parent 9fc4f6e1b9
commit 1c0ca7ce1d

View File

@ -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;