octo-deno/webpack.config.js

14 lines
229 B
JavaScript
Raw Normal View History

const path = require('path')
let config = {
2018-03-19 04:54:40 +00:00
entry: './lib/index.js',
output: {
filename: 'octo.js',
library: 'octo',
path: path.resolve(__dirname, 'dist'),
libraryTarget: 'var'
}
}
2018-03-19 04:54:40 +00:00
module.exports = config