Skip to content

Commit 6baa1c8

Browse files
committed
Disable emit of .tsbuildinfo
`@rollup/plugin-typescript` emits a warning while building, hinting that `outputToFilesystem` defaults to true. Although "noEmit" is set to `true` for the tsconfig, rollup writes a .tsbuildinfo. The .tsbuildinfo is then also shipped inside the npm module and doesn't offer any benefit for library consumers.
1 parent 5c56b87 commit 6baa1c8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

compiler/packages/babel-plugin-react-compiler/rollup.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ const DEV_ROLLUP_CONFIG = {
2828
plugins: [
2929
typescript({
3030
tsconfig: './tsconfig.json',
31+
outputToFilesystem: false,
3132
compilerOptions: {
3233
noEmit: true,
3334
},

0 commit comments

Comments
 (0)