Skip to content

Commit 88015df

Browse files
committed
fix(docs): drop deprecated baseUrl from tsconfig
TypeScript 6.0 marks `baseUrl` as deprecated, which Vitest's typecheck turns into a hard CI failure. The docs `paths` already use relative `./` notation, so removing `baseUrl` is a no-op for resolution. The landmine sat dormant until commit e58ea4d added the first `*.test.ts` under `packages/docs/`, which caused Vitest to actually load the docs `tsconfig.test.json` for typechecking on every run.
1 parent 02c2baf commit 88015df

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

packages/docs/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"compilerOptions": {
3-
"baseUrl": ".",
43
"target": "ESNext",
54
"lib": ["dom", "dom.iterable", "esnext"],
65
"allowJs": true,

0 commit comments

Comments
 (0)