We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5656eb commit af5e1a4Copy full SHA for af5e1a4
src/util/entry-files.ts
@@ -13,7 +13,7 @@ export default function getEntryFiles(
13
let entries: (readonly [string, string])[] = [
14
...glob
15
.sync("src/*.ts")
16
- .filter((f) => !/(\.(test|spec)\.ts$)|(\/__test__\/)/.test(f))
+ .filter((f) => !/(\.(d|test|spec)\.ts$)|(\/__test__\/)/.test(f))
17
.map((f) => [path.parse(f).name, f] as const),
18
19
.sync("src/*/index.ts")
0 commit comments