StructV2/webpack.config.product.js

22 lines
397 B
JavaScript
Raw Normal View History

2021-12-11 08:10:12 +00:00
module.exports = {
2022-03-19 16:37:28 +00:00
mode: 'production',
2021-12-11 08:10:12 +00:00
entry: './src/StructV.ts',
output: {
filename: './sv.js',
libraryTarget: 'umd'
},
resolve: {
extensions: ['.ts', '.js']
},
module: {
rules: [
{
test: /\.ts$/,
exclude: /node_modules/,
loader: 'ts-loader'
}
]
2022-03-02 14:07:27 +00:00
}
2021-12-11 08:10:12 +00:00
};