mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 19:56:04 +01:00
12 lines
202 B
JavaScript
12 lines
202 B
JavaScript
module.exports = {
|
|
test: /\.coffee(\.erb)?$/,
|
|
use: [{
|
|
loader: 'coffee-loader',
|
|
options: {
|
|
bare: false,
|
|
transpile: {
|
|
presets: ['@babel/preset-env'],
|
|
},
|
|
}
|
|
}]
|
|
}
|