From 2274716c449fc9de679d24385fa4931c1b3baa42 Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Sun, 9 Jun 2024 10:59:39 -0700 Subject: [PATCH] tsconfig: Remove unnecessary options. Signed-off-by: Anders Kaseorg --- tsconfig.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 964ffa1ae7..2654700d81 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,8 +1,7 @@ { "compilerOptions": { - "baseUrl": ".", "paths": { - "*": ["web/src/types/*"], + "*": ["./web/src/types/*"], }, "types": ["@types/jquery.validation"], @@ -18,7 +17,6 @@ "esModuleInterop": true, "moduleResolution": "node", "resolveJsonModule": true, - "sourceMap": true, /* Strict type-checking */ "strict": true,