Skip to content

Commit 69707ff

Browse files
committed
fix(zod2md-jsdocs): exclude tests from build
1 parent c9c47f3 commit 69707ff

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

tools/zod2md-jsdocs/tsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
"references": [
1010
{
1111
"path": "./tsconfig.lib.json"
12+
},
13+
{
14+
"path": "./tsconfig.spec.json"
1215
}
1316
]
1417
}

tools/zod2md-jsdocs/tsconfig.lib.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@
77
"types": ["node"],
88
"esModuleInterop": true
99
},
10-
"include": ["src/**/*.ts"]
10+
"include": ["src/**/*.ts"],
11+
"exclude": ["src/**/*.test.ts", "src/**/*.spec.ts"]
1112
}

0 commit comments

Comments
 (0)