1 Star 0 Fork 9

ActonZhuang/uni-cloud-router

forked from DCloud/uni-cloud-router 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
rollup.config.js 917 Bytes
一键复制 编辑 原始数据 按行查看 历史
fxy060608 提交于 2020-09-24 14:18 . feat: support http
import path from 'path'
import ts from 'rollup-plugin-typescript2'
import commonjs from 'rollup-plugin-commonjs'
import { nodeResolve } from '@rollup/plugin-node-resolve'
import { terser } from 'rollup-plugin-terser'
const tsPlugin = ts({
check: process.env.NODE_ENV === 'production',
tsconfig: path.resolve(__dirname, 'tsconfig.json'),
cacheRoot: path.resolve(__dirname, 'node_modules/.rts2_cache'),
tsconfigOverride: {
compilerOptions: {
declaration: false,
},
exclude: ['**/__tests__'],
},
})
module.exports = {
input: 'src/index.ts',
output: {
file: 'dist/index.js',
format: `commonjs`,
},
external: ['fs', 'path', 'events', 'tty', 'util', 'os', 'querystring'],
plugins: [
nodeResolve(),
commonjs({
ignore: ['conditional-runtime-dependency'], // 使用旧版本 rollup-plugin-commonjs 解决 dynamic require
}),
tsPlugin,
terser(),
],
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/actonzhuang/uni-cloud-router.git
git@gitee.com:actonzhuang/uni-cloud-router.git
actonzhuang
uni-cloud-router
uni-cloud-router
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385