1 Star 0 Fork 1

gsls200808/wordpress

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
webpack.config.js 629 Bytes
一键复制 编辑 原始数据 按行查看 历史
wss-gitee 提交于 2021-04-14 13:36 . feat: init repo
// eslint-disable-next-line @typescript-eslint/no-require-imports
const path = require('path');
module.exports = {
target: 'node',
entry: './src/index.ts',
devtool: 'none',
module: {
rules: [
{
test: /\.ts?$/,
use: [
{
loader: 'ts-loader',
options: {
configFile: 'tsconfig.json',
},
},
],
exclude: /node_modules/,
},
],
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],
},
output: {
filename: 'index.js',
path: path.resolve(__dirname, 'dist'),
libraryTarget: 'umd',
},
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gsls200808/wordpress.git
[email protected]:gsls200808/wordpress.git
gsls200808
wordpress
wordpress
master

搜索帮助