You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
800 B

'use strict';
const webpack = require('webpack');
const license = require('license-webpack-plugin');
const AddAssetPlugin = require('add-asset-webpack-plugin');
module.exports = {
entry: './source/index.ts',
target: 'node',
node: false,
devtool: 'source-map',
output: {
filename: 'dist/ow.js',
libraryTarget: 'commonjs2'
},
resolve: {
extensions: ['.ts', '.js']
},
plugins: [
new webpack.optimize.ModuleConcatenationPlugin(),
new AddAssetPlugin('dist/index.js', `
'use strict';
module.exports = require('./ow').default;
module.exports.default = module.exports;
`),
new license.LicenseWebpackPlugin({
pattern: /.*/,
outputFilename: 'dist/licenses.txt'
})
],
module: {
rules: [
{
test: /\.ts$/,
loader: 'awesome-typescript-loader'
}
]
}
};