Skip to content

Commit 9e623a7

Browse files
committed
refactor: use shared tsconfig for lib and src
1 parent b0bf1ce commit 9e623a7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/outreach/astro.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export default defineConfig({
6262
},
6363
plugins: [
6464
starlightTypeDocPlugin({
65-
entryPoints: [path.resolve(runtimeCoreRoot, 'src/index.d.ts')],
65+
entryPoints: [path.resolve(runtimeCoreRoot, 'lib/index.d.ts')],
6666
locale: 'en',
6767
output: 'runtime-core-docs',
6868
sidebar: {
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"extends": "../../tsconfig.base.json",
33
"compilerOptions": {
4-
"incremental": false,
4+
"checkJs": false,
55
"lib": ["ESNext", "DOM", "DOM.Iterable"],
66
"module": "Node16",
77
"moduleResolution": "Node16"
88
},
9-
"include": ["src/**/*"]
9+
"include": ["lib/**/*", "src/**/*"]
1010
}

0 commit comments

Comments
 (0)