From bda2622401cbbebe157dbea83a9395192d52d21f Mon Sep 17 00:00:00 2001 From: Wan Qi Chen <495709+wa0x6e@users.noreply.github.com> Date: Mon, 28 Aug 2023 00:53:38 +0900 Subject: [PATCH] chore: output sourcemaps on build --- tsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 08adb58..63c891f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,6 +9,9 @@ "noImplicitAny": false, "resolveJsonModule": true, "moduleResolution": "Node", - "skipLibCheck": true + "skipLibCheck": true, + "sourceMap": true, + "inlineSources": true, + "sourceRoot": "/" } }