From cf2828583a46db1aa58fbef1b60daf948bca7955 Mon Sep 17 00:00:00 2001 From: telamonian Date: Thu, 7 Nov 2019 10:46:10 -0500 Subject: [PATCH] enabled full typescript sourcemaps (with breakpoints and everything!) this will make debugging both jlab core and extensions much easier inthe future --- tsconfig.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index f6ed6896f..b3f66ec49 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,6 +5,7 @@ "declaration": true, "esModuleInterop": true, "incremental": true, + "inlineSources": true, "jsx": "react", "module": "esnext", "moduleResolution": "node", @@ -15,6 +16,8 @@ "preserveWatchOutput": true, "resolveJsonModule": true, "rootDir": "src", + "sourceMap": true, + "sourceRoot": "./@jupyterlab/git/src", "strict": true, "strictNullChecks": false, "target": "es2017",