From 6bd0ea6d4f54227f4c38f73619c57c85391a08e4 Mon Sep 17 00:00:00 2001 From: Jonas Pacheco Date: Wed, 8 Apr 2026 15:27:04 -0300 Subject: [PATCH] chore: remove baseUrl deprecated do tsconfig.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove a opção baseUrl que está obsoleta no TypeScript 5.0+. Os paths @/* e @shared/* continuam funcionando normalmente com moduleResolution: bundler. --- tsconfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index a0203ee..5f4a60e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,7 +13,6 @@ "skipLibCheck": true, "allowImportingTsExtensions": true, "moduleResolution": "bundler", - "baseUrl": ".", "types": ["node", "vite/client"], "paths": { "@/*": ["./client/src/*"],