1 Star 0 Fork 19

fastiot/innospots-page

forked from innospots/innospots-page 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
rollup.config.js 1.21 KB
一键复制 编辑 原始数据 按行查看 历史
Smars 提交于 2022-09-07 08:15 . add - master
/* eslint-disable import/no-anonymous-default-export */
import { babel } from '@rollup/plugin-babel';
import commonjs from '@rollup/plugin-commonjs';
import json from '@rollup/plugin-json';
import { nodeResolve } from '@rollup/plugin-node-resolve';
import replace from '@rollup/plugin-replace';
import typescript from '@rollup/plugin-typescript';
import path from 'path';
import cleanup from 'rollup-plugin-cleanup';
export default {
input: 'src/task.ts', // 打包入口
output: {
// 打包出口
name: 'getQueryData', // namespace
file: path.resolve(__dirname, 'public/task/index.js'), // 最终打包出来的文件路径和文件名
format: 'umd', // umd/amd/cjs/iife
},
plugins: [
json(),
nodeResolve({
extensions: ['.js', '.ts'],
}),
// 解析TypeScript
typescript({
tsconfig: path.resolve(__dirname, 'tsconfig.json'),
}),
// 将 CommonJS 转换成 ES2015 模块供 Rollup 处理
commonjs(),
// es6--> es5
babel({
babelHelpers: 'runtime',
exclude: 'node_modules/**',
presets: [['@babel/preset-env', { modules: false }]],
comments: false,
}),
cleanup(),
replace({
'console.log': '//console.log',
}),
],
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/fastiot/innospots-page.git
git@gitee.com:fastiot/innospots-page.git
fastiot
innospots-page
innospots-page
develop_1.2.0_alpha

搜索帮助