UNPKG

286 BJavaScriptView Raw
1const path = require("path");
2const babel = require("rollup-plugin-babel");
3const configure = path.resolve("ezy.config.json");
4const config = require(configure);
5
6module.exports = {
7 entry: path.resolve(config.entryDir + "/" + config.entry),
8 format: "cjs",
9 plugins: [ babel() ]
10};