fix: tests/tsconfig baseUrl after root baseUrl addition (typecheck script)

This commit is contained in:
afiqzudinhadi 2026-07-30 12:27:21 +08:00
parent 08f63205c2
commit 79ba40f04d

View file

@ -1,9 +1,10 @@
{ {
"extends": "../tsconfig.json", "extends": "../tsconfig.json",
"compilerOptions": { "compilerOptions": {
"baseUrl": "..",
"paths": { "paths": {
"packages/*": ["../packages/*"], "packages/*": ["packages/*"],
"tests/*": ["./*"] "tests/*": ["tests/*"]
}, },
"types": ["vite/client", "bun-types"] "types": ["vite/client", "bun-types"]
}, },