We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79f8e7d commit cc86f8cCopy full SHA for cc86f8c
1 file changed
tools/bundler/src/logic/rollup.config.ts
@@ -58,7 +58,9 @@ export function getRollupOptions(
58
tsconfig: path.resolve(projectRoot, config.tsconfig),
59
compilerOptions: {
60
sourceMap: false,
61
- declaration: false
+ declaration: false,
62
+ // Avoid TS6304 with project refs where tsconfig has `composite: true`.
63
+ composite: false
64
}
65
}),
66
url({
0 commit comments