From 75278e289067977291baa7e2ac217e85fc7d6088 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 14 Dec 2021 13:20:38 +0100 Subject: [PATCH] Support sourceMaps --- shared/tsconfig.json | 3 +-- tsconfig.base.json | 5 +++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/shared/tsconfig.json b/shared/tsconfig.json index 88107e27f..95892077b 100644 --- a/shared/tsconfig.json +++ b/shared/tsconfig.json @@ -1,7 +1,6 @@ { "extends": "../tsconfig.base.json", "compilerOptions": { - "outDir": "../dist/shared", - + "outDir": "../dist/shared" } } diff --git a/tsconfig.base.json b/tsconfig.base.json index f579c703a..a323b0d05 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -3,7 +3,7 @@ "module": "commonjs", "target": "es2015", "noImplicitAny": false, - "sourceMap": false, + "sourceMap": true, "experimentalDecorators": true, "emitDecoratorMetadata": true, "importHelpers": true, @@ -32,6 +32,7 @@ "resolveJsonModule": true, "strict": false, "skipLibCheck": true, - "composite": true + "composite": true, + "declarationMap": true } }