mirror of
https://github.com/scratchfoundation/scratch-blocks.git
synced 2025-07-08 02:35:47 -04:00
14 lines
288 B
JavaScript
14 lines
288 B
JavaScript
|
var path = require('path');
|
||
|
module.exports = {
|
||
|
entry: {
|
||
|
horizontal: './shim/horizontal.js',
|
||
|
vertical: './shim/vertical.js'
|
||
|
},
|
||
|
output: {
|
||
|
library: 'ScratchBlocks',
|
||
|
libraryTarget: 'commonjs2',
|
||
|
path: path.resolve(__dirname, 'dist'),
|
||
|
filename: '[name].js'
|
||
|
}
|
||
|
};
|