Skip to content

Commit

Permalink
Excluded test folders in webpack config
Browse files Browse the repository at this point in the history
  • Loading branch information
JasperAlexander committed Apr 10, 2023
1 parent cbd1688 commit 8800ebd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/file-to-text/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = {
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
exclude: [/test/, /node_modules/],
},
],
},
Expand Down
2 changes: 1 addition & 1 deletion packages/text-to-aitext/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = {
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
exclude: [/test/, /node_modules/],
},
],
},
Expand Down

0 comments on commit 8800ebd

Please sign in to comment.