diff --git a/Gulpfile.js b/Gulpfile.js index 82af1630c5c..ed77c967920 100644 --- a/Gulpfile.js +++ b/Gulpfile.js @@ -590,6 +590,7 @@ task("LKG").description = "Makes a new LKG out of the built js files"; task("LKG").flags = { " --built": "Compile using the built version of the compiler.", }; +task("lkg", series("LKG")); const generateSpec = () => exec("cscript", ["//nologo", "scripts/word2md.js", path.resolve("doc/TypeScript Language Specification - ARCHIVED.docx"), path.resolve("doc/spec-ARCHIVED.md")]); task("generate-spec", series(buildScripts, generateSpec)); diff --git a/src/tsconfig-library-base.json b/src/tsconfig-library-base.json index 46de44a48ff..f4ded3f16c5 100644 --- a/src/tsconfig-library-base.json +++ b/src/tsconfig-library-base.json @@ -2,7 +2,6 @@ "extends": "./tsconfig-base", "compilerOptions": { "declarationMap": false, - "sourceMap": false, "composite": false, "incremental": true, "declaration": true,