1 Star 0 Fork 1

luojoe/anichart.js

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
webpack.common.js 651 Bytes
一键复制 编辑 原始数据 按行查看 历史
见齐 提交于 2021-01-14 16:43 . build: update dependencies
const path = require("path");
module.exports = {
entry: "./src/index.ts",
output: {
filename: "anichart.js",
path: path.resolve(__dirname, "dist"),
library: "anichart",
libraryTarget: "umd",
globalObject: "this",
},
resolve: {
extensions: [".ts", ".js"],
fallback: { path: require.resolve("path-browserify") },
},
module: {
rules: [
{
test: /\.ts?$/,
loader: "ts-loader",
options: { configFile: "tsconfig.dev.json" },
},
{
test: /\.js$/,
use: {
loader: "babel-loader",
},
exclude: "/node_modules/",
},
],
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/joe_luo/anichart.js.git
git@gitee.com:joe_luo/anichart.js.git
joe_luo
anichart.js
anichart.js
master

搜索帮助