From 67a560b7ef246cb2ee73a3e947db375c9fc004aa Mon Sep 17 00:00:00 2001 From: Stefan Penner Date: Mon, 29 Apr 2019 12:13:07 -0700 Subject: [PATCH] =?UTF-8?q?Enable=20source-maps=20as=20per=20@chriseppstei?= =?UTF-8?q?n=E2=80=99s=20PR=20=20#91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + tsconfig.json | 9 +++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index eb5fe97..3e7cbd6 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ node_modules tmp *.js *.d.ts +*.map !types/ \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index 3ad9a7d..bebbb09 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,13 +1,14 @@ { "compilerOptions": { + "baseUrl": ".", "declaration": true, - "strict": true, - "moduleResolution": "node", "module": "commonjs", - "target": "es5", + "moduleResolution": "node", "paths": { "*": ["types/*"] }, - "baseUrl": "." + "sourceMap": true, + "strict": true, + "target": "es5" } }