From 50d46d05f202e0380757ed4a8af241236cb0e94e Mon Sep 17 00:00:00 2001 From: "Hung-Han (Henry) Chen" <1474479+chenhunghan@users.noreply.github.com> Date: Wed, 25 Nov 2020 14:59:39 +0800 Subject: [PATCH] Remove comments in JSON, disable sourceMap Signed-off-by: Hung-Han (Henry) Chen <1474479+chenhunghan@users.noreply.github.com> --- tsconfig.extensions.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tsconfig.extensions.json b/tsconfig.extensions.json index 4b6b142f64..20cc8076a8 100644 --- a/tsconfig.extensions.json +++ b/tsconfig.extensions.json @@ -2,8 +2,8 @@ "extends": "./tsconfig.json", "compilerOptions": { "module": "CommonJS", - "declaration": true, // should output .d.ts - "sourceMap": true, // for use with webpack's devtool: 'inline-source-map' - "outDir": "./src/extensions/npm/extensions/dist" // where .d.ts output + "declaration": true, + "sourceMap": false, + "outDir": "./src/extensions/npm/extensions/dist" } }