0 Star 15 Fork 10

仙人掌/leaflet.plot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
lib.config.js 876 Bytes
一键复制 编辑 原始数据 按行查看 历史
仙人掌 提交于 2021-10-13 16:10 . initial library and sample
var path = require('path');
module.exports = {
entry: {
'PlotUtil': './lib/PlotUtil.js',
'Plots': './lib/Plots.js',
},
mode: 'production',
output: {
path: path.resolve(__dirname,'./libdist'),
publicPath: './',
libraryExport: 'default', // 对外暴露default属性,就可以直接调用default里的属性
library: 'testview', // // 指定类库名,主要用于直接引用的方式(比如使用script 标签)
libraryTarget: 'umd', // 定义打包方式
globalObject: 'this',
umdNamedDefine: true,
filename: '[name].min.js'
},
module: {
rules: [
{
test: /\.js$/,
include: [path.resolve(__dirname,'lib')],
exclude: /node_modules/,
loader: 'babel-loader'
}
]
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Alotus/leaflet.plot.git
git@gitee.com:Alotus/leaflet.plot.git
Alotus
leaflet.plot
leaflet.plot
master

搜索帮助