UNPKG

minimongo-sync

Version:

Client-side mongo database with server sync over http

23 lines (22 loc) 415 B
path = require('path'); module.exports = { entry: ['./index.js'], devtool: "source-map", output: { filename: 'minimongo.js', path: path.resolve(__dirname, 'dist'), }, module: { loaders: [ { test: /\.coffee$/, loader: ["coffee-loader"] } ] }, resolve: { extensions: [".coffee", ".js", ".json"] }, externals: { lodash: '_', underscore: '_', jquery: '$', } };