gotty/js/webpack.config.js
2017-08-22 16:58:15 +09:00

25 lines
506 B
JavaScript

const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
module.exports = {
entry: "./src/main.ts",
output: {
filename: "./dist/gotty-bundle.js"
},
devtool: "source-map",
resolve: {
extensions: [".ts", ".tsx", ".js"],
},
module: {
rules: [
{
test: /\.tsx?$/,
loader: "ts-loader",
exclude: [/node_modules/],
}
]
},
plugins: [
new UglifyJSPlugin()
]
};