Skip to content

Commit 78f286d

Browse files
committedMay 8, 2024·
Fix docs config
1 parent 15db141 commit 78f286d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎tsconfig.docs.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
"types": ["node"]
66
},
77
"include": ["./lib/src/**/*.*"],
8-
"exclude": ["**/*.test.tsx", "**/index.ts", "dist", "build", "node_modules"]
8+
"exclude": ["**/*.test.tsx", "dist", "build", "node_modules"]
99
}

‎typedoc.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module.exports = {
33
tsconfig: "tsconfig.docs.json",
44
name: "React18 Loaders",
55
entryPoints: ["./lib/src"],
6-
exclude: ["**/*.test.tsx", "**/index.ts", "**/declaration.d.ts"],
6+
exclude: ["**/*.test.tsx"],
77
entryPointStrategy: "Expand",
88
out: "./docs",
99
commentStyle: "all",

0 commit comments

Comments
 (0)
Please sign in to comment.