Skip to content

Commit 9b2fa97

Browse files
committed
chore(adapter-nextjs): remove stale noEmitOnError: false from rollup config
Type errors have been resolved — the suppression is no longer needed.
1 parent 40c1f8a commit 9b2fa97

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/adapter-nextjs/rollup.config.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ const config = defineConfig([
1818
{
1919
input: input,
2020
output: cjsOutput,
21-
plugins: [typescript({ ...cjsTSOptions, noEmitOnError: false })],
21+
plugins: [typescript(cjsTSOptions)],
2222
},
2323
// ESM config
2424
{
2525
input: input,
2626
output: esmOutput,
27-
plugins: [typescript({ ...esmTSOptions, noEmitOnError: false })],
27+
plugins: [typescript(esmTSOptions)],
2828
},
2929
]);
3030

0 commit comments

Comments
 (0)