1 Star 1 Fork 2

fe-mirror/flv.js

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
webpack.config.js 1.49 KB
一键复制 编辑 原始数据 按行查看 历史
xqq 提交于 2021-07-28 22:50 . webpack.config.js: Fix ES5 compatibility
const webpack = require('webpack');
const pkg = require('./package.json');
const path = require('path');
const TerserPlugin = require('terser-webpack-plugin');
let config = {
entry: './src/index.js',
output: {
filename: 'flv.js',
path: path.resolve(__dirname, 'dist'),
library: 'flvjs',
libraryTarget: 'umd',
environment: {
arrowFunction: false,
bigIntLiteral: false,
const: false,
destructuring: false,
dynamicImport: false,
forOf: false,
module: false
}
},
devtool: 'source-map',
resolve: {
extensions: ['.ts', '.tsx', '.js', '.json'],
fallback: {
fs: false,
path: false
}
},
plugins: [
new webpack.DefinePlugin({
__VERSION__: JSON.stringify(pkg.version)
})
],
optimization: {
minimizer: [
new TerserPlugin({
extractComments: false,
})
]
},
module: {
rules: [
{
test: /\.(ts|js)$/,
use: 'ts-loader',
exclude: /node-modules/
},
{
enforce: 'pre',
test: /\.js$/,
use: 'source-map-loader'
}
]
}
};
module.exports = (env, argv) => {
if (argv.mode === 'production') {
config.output.filename = 'flv.min.js';
}
return config;
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/fe-mirror/flv.js.git
git@gitee.com:fe-mirror/flv.js.git
fe-mirror
flv.js
flv.js
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385