From 79ba40f04dcca1b456df30ce450c23649afd3859 Mon Sep 17 00:00:00 2001 From: afiqzudinhadi Date: Thu, 30 Jul 2026 12:27:21 +0800 Subject: [PATCH] fix: tests/tsconfig baseUrl after root baseUrl addition (typecheck script) --- tests/tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/tsconfig.json b/tests/tsconfig.json index bfa58b7..426e5d9 100644 --- a/tests/tsconfig.json +++ b/tests/tsconfig.json @@ -1,9 +1,10 @@ { "extends": "../tsconfig.json", "compilerOptions": { + "baseUrl": "..", "paths": { - "packages/*": ["../packages/*"], - "tests/*": ["./*"] + "packages/*": ["packages/*"], + "tests/*": ["tests/*"] }, "types": ["vite/client", "bun-types"] },