UNPKG

videocontext

Version:

A WebGL & HTML5 graph based video composition library

16 lines 465 B
module.exports = { entry: __dirname + "/src/videocontext.js", devtool: "source-map", output: { path: __dirname+'/dist', filename: "videocontext.commonjs2.js", libraryTarget: "commonjs2", library: "VideoContext" }, module: { loaders: [ { test: /\.css$/, loader: "style!css" }, { test: /\.js$/, exclude: /node_modules/, loaders: ["babel-loader", "eslint-loader"]} ] } };