UNPKG

zhb-react-npm

Version:

react自定义测试第三版

11 lines (10 loc) 392 B
const babel = require("rollup-plugin-babel"); module.exports = { input: "./src/index.js", //入口文件路径 output: { file: "./lib/bundle.js", //出口文件 format: "cjs", //输出的语法格式(格式详情见官网) }, plugins: [babel()], //转码 external: ["react", "styled-components"], //去除警告 如果要用styled-components插件的话添加进来 };