Skip to content

Commit 276529f

Browse files
committed
fix: sync TypeScript project references for upload-tool
1 parent 843ae9a commit 276529f

File tree

3 files changed

+27
-18
lines changed

3 files changed

+27
-18
lines changed

packages/ui/examples/react/upload-tool/tsconfig.app.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@
66
"lib": ["ES2020", "DOM", "DOM.Iterable"],
77
"skipLibCheck": true
88
},
9-
"include": ["src"]
9+
"include": ["src"],
10+
"references": [
11+
{
12+
"path": "../components/tsconfig.lib.json"
13+
},
14+
{
15+
"path": "../../../packages/react/tsconfig.lib.json"
16+
}
17+
]
1018
}
11-

packages/ui/examples/react/upload-tool/tsconfig.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,13 @@
2121
"noFallthroughCasesInSwitch": true
2222
},
2323
"include": ["src"],
24-
"exclude": ["node_modules"]
24+
"exclude": ["node_modules"],
25+
"references": [
26+
{
27+
"path": "../components"
28+
},
29+
{
30+
"path": "../../../packages/react"
31+
}
32+
]
2533
}
26-

pnpm-lock.yaml

Lines changed: 9 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)