From 5d72bbd1621e2aa350d3e4574af8f1431c3710a1 Mon Sep 17 00:00:00 2001 From: Konnor Rogers Date: Tue, 22 Aug 2023 10:32:15 -0400 Subject: [PATCH] remove baseUrl from tsconfig for better dev experience (#1530) --- tsconfig.json | 1 - tsconfig.prod.json | 1 - 2 files changed, 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index ff48e53a..06f4a5c2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -28,7 +28,6 @@ "skipLibCheck": true, "forceConsistentCasingInFileNames": true, "useUnknownInCatchVariables": true, - "baseUrl": ".", "types": [ "mocha", "user-agent-data-types" diff --git a/tsconfig.prod.json b/tsconfig.prod.json index 1cdbd213..16aa85a6 100644 --- a/tsconfig.prod.json +++ b/tsconfig.prod.json @@ -1,7 +1,6 @@ { "extends": "./tsconfig", "compilerOptions": { - "baseUrl": ".", "rootDir": "./src" }, "include": ["src"],