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