Skip to content

Commit ef59ba8

Browse files
committed
Exclude __tests__ from create-sei tsconfig
Add src/__tests__ to packages/create-sei/tsconfig.json "exclude" so test files are not included in compilation or emitted to dist. This prevents test artifacts from being compiled, reduces build noise, and speeds up the TypeScript build for the package.
1 parent 622ceaa commit ef59ba8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/create-sei/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"extends": "../../tsconfig.base.json",
3-
"exclude": ["node_modules", "dist", "test"],
3+
"exclude": ["node_modules", "dist", "test", "src/__tests__"],
44
"compilerOptions": {
55
"outDir": "./dist",
66
"target": "ES2020",

0 commit comments

Comments
 (0)