Skip to content

Commit 6df7e7f

Browse files
committed
fix: exclude website/ from the library's tsconfig.build.json
tsconfig.build.json (used by bob build for the published package's type definitions) declares its own exclude array, which overrides rather than merges with the base tsconfig.json's exclude — so website/ still leaked into the definition-file build and broke it with Astro-specific module errors.
1 parent deff742 commit 6df7e7f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tsconfig.build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"extends": "./tsconfig",
3-
"exclude": ["example", "lib"]
3+
"exclude": ["example", "lib", "website"]
44
}

0 commit comments

Comments
 (0)