UNPKG

es5to3-webpack-plugin

Version:

Transforms JavaScript from ES5 to ES3 bundled by webpack.

17 lines (13 loc) 268 B
var path = require("path"); var ES5to3OutputPlugin = require("../index"); module.exports = { context: path.resolve(__dirname), entry: "./source.js", output: { path: "./test", filename: "result.js" }, plugins: [ new ES5to3OutputPlugin() ] };