Skip to content

Commit

Permalink
SLSCMN-3 exclude jest source in rollup config
Browse files Browse the repository at this point in the history
  • Loading branch information
mwarman committed Nov 25, 2023
1 parent 4ca7886 commit 647d673
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,13 @@ export default [
commonjs(),
typescript({
tsconfig: './tsconfig.json',
exclude: ['jest.config.ts', '**/*.test.ts', '**/__tests__/**/*', '**/__fixtures__/**/*'],
exclude: [
'jest.config.ts',
'jest.setup.ts',
'**/*.test.ts',
'**/__tests__/**/*',
'**/__fixtures__/**/*',
],
}),
terser(),
],
Expand Down

0 comments on commit 647d673

Please sign in to comment.