Ai
1 Star 0 Fork 0

子安/gdbgui

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
webpack.config.js 570 Bytes
一键复制 编辑 原始数据 按行查看 历史
Chad Smith 提交于 2018-04-15 09:53 +08:00 . update npm packages and rebuild
const path = require('path');
module.exports = {
entry: './gdbgui/src/js/gdbgui.jsx',
devtool: 'source-map',
performance: {
hints: false
},
output: {
path: path.resolve(__dirname, 'gdbgui/static/js/'),
filename: 'build.js'
},
module: {
rules: [
{ test: /\.js$/,
use: [
'babel-loader',
'eslint-loader',
],
exclude: /node_modules/
},
{ test: /\.jsx$/,
use: [
'babel-loader',
'eslint-loader',
],
exclude: /node_modules/
}
]
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/andrewgithub/gdbgui.git
git@gitee.com:andrewgithub/gdbgui.git
andrewgithub
gdbgui
gdbgui
master

搜索帮助