chore: don't transpile node_modules

This commit is contained in:
arthurfiorette 2021-12-09 14:39:09 -03:00
parent 488cd49527
commit 05aadff20f
No known key found for this signature in database
GPG Key ID: 9D190CD53C53C555

View File

@ -28,7 +28,8 @@ const config = {
module: {
rules: [
{
test: /\.(ts|js)$/,
test: /\.(tsx?|jsx?)$/,
exclude: /node_modules\/(?!(@tusbar\/cache-control))/,
use: { loader: 'babel-loader' }
}
]