mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-14 19:40:39 -05:00
14 lines
197 B
JavaScript
14 lines
197 B
JavaScript
module.exports = {
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.(js|jsx)$/,
|
|
exclude: /node_modules/,
|
|
use: {
|
|
loader: 'babel-loader',
|
|
},
|
|
},
|
|
],
|
|
},
|
|
}
|