From 5a8186f86d87682f445dfd1cb8d0a5663d5ff9cd Mon Sep 17 00:00:00 2001 From: Andrew Branch Date: Mon, 30 Nov 2020 14:28:13 -0800 Subject: [PATCH] Produce source maps for local typescriptServices build (#41589) * Enable source maps for typescriptServices local builds * Alias gulp lkg -> gulp LKG --- Gulpfile.js | 1 + src/tsconfig-library-base.json | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) 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,