Skip to content

Commit a579674

Browse files
committed
fix: remove typeDoc exclusion from starlight configuration and add include/exclude to tsconfig
1 parent 77f3e1a commit a579674

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

apps/doc/astro.config.mjs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,6 @@ export default defineConfig({
3737
"../../packages/core/src/loaders.ts",
3838
"../../packages/core/src/utils.ts",
3939
],
40-
typeDoc: {
41-
exclude: ["../../packages/core/examples/**/*"],
42-
},
4340
tsconfig: "../../packages/core/tsconfig.json",
4441
}),
4542
starlightLlmsTxt(),

packages/core/tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,7 @@
2727
"noUnusedLocals": false,
2828
"noUnusedParameters": false,
2929
"noPropertyAccessFromIndexSignature": false
30-
}
30+
},
31+
"include": ["src/**/*"],
32+
"exclude": ["examples/**/*", "dist/**/*", "node_modules/**/*"]
3133
}

0 commit comments

Comments
 (0)