Skip to content

Commit

Permalink
chore: fix babel paths to avoid compiling fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
jakemhiller committed Sep 15, 2023
1 parent 211364c commit f1dc116
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions babel.defaults.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ if (process.env.NODE_ENV !== 'test') {
'**/*.(test|spec).ts{,.snap}',
'**/*.(test|spec).tsx',
'**/tests/**/*',
'**/__tests__/**/*',
'**/__mocks__/**/*',
'**/__fixtures__/**/*',
'**/__tests__',
'**/__mocks__',
'**/__fixtures__',
'./**/*.d.ts',
];
}
Expand Down

0 comments on commit f1dc116

Please sign in to comment.