From 61bd84b38500f3271eb7daf667804f7a41e4e4e9 Mon Sep 17 00:00:00 2001 From: Timo Hocker Date: Mon, 18 May 2020 10:24:41 +0200 Subject: [PATCH] emit source maps --- tsconfig.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 296c744..3d4b744 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,11 +2,12 @@ "compilerOptions": { "target": "es5", "module": "commonjs", - "outDir": "./dist", + "outDir": "./dist", "rootDir": "./", - "strict": true, + "strict": true, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, - "declaration": true + "declaration": true, + "sourceMap": true } }