13 lines
183 B
JavaScript
13 lines
183 B
JavaScript
'use strict'
|
|
|
|
const path = require('path')
|
|
|
|
module.exports = {
|
|
entry: './index.js',
|
|
target: 'node',
|
|
output: {
|
|
filename: 'bundle.js',
|
|
path: path.resolve(__dirname)
|
|
}
|
|
}
|