From 1e7ea06f3df48778948445c64be20d99b0d92c2f Mon Sep 17 00:00:00 2001 From: Jerko Steiner Date: Tue, 26 Mar 2019 20:00:16 +0800 Subject: [PATCH] Inline sourcemaps and source when compiling TS --- packages/tsconfig.common.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/tsconfig.common.json b/packages/tsconfig.common.json index 9997d22..44cf39d 100644 --- a/packages/tsconfig.common.json +++ b/packages/tsconfig.common.json @@ -3,7 +3,8 @@ "composite": true, "declaration": true, "declarationMap": true, - "sourceMap": true, + "inlineSourceMap": true, + "inlineSources": true, "lib": ["es2015", "dom"], "target": "es3", @@ -12,7 +13,7 @@ "noImplicitAny": true, "strict": true, "skipLibCheck": true, - "noUnusedLocals": true, + "noUnusedLocals": false, "esModuleInterop": true, "emitDecoratorMetadata": true, "experimentalDecorators": true,