Skip to content

Commit e83e00d

Browse files
fix: add missing TypeScript project references and lib config
Agent-Logs-Url: https://github.com/objectstack-ai/objectui/sessions/de504ad4-2ea3-4ba8-8cb8-f8f72a5ac86b Co-authored-by: xuyushun441-sys <255036401+xuyushun441-sys@users.noreply.github.com>
1 parent 86fed66 commit e83e00d

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

packages/app-shell/tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
{ "path": "../types" },
1616
{ "path": "../core" },
1717
{ "path": "../react" },
18-
{ "path": "../components" }
18+
{ "path": "../components" },
19+
{ "path": "../fields" },
20+
{ "path": "../layout" }
1921
]
2022
}

packages/react/tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"outDir": "dist",
55
"rootDir": "src",
66
"jsx": "react-jsx",
7+
"lib": ["ES2020", "DOM"],
78
"noEmit": false,
89
"declaration": true,
910
"composite": true
@@ -12,6 +13,7 @@
1213
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.test.tsx"],
1314
"references": [
1415
{ "path": "../types" },
15-
{ "path": "../core" }
16+
{ "path": "../core" },
17+
{ "path": "../i18n" }
1618
]
1719
}

0 commit comments

Comments
 (0)