]> git.immae.eu Git - github/fretlink/purs-loader.git/blame - webpack.config.js
Remove `require-path`, use relative paths for PS
[github/fretlink/purs-loader.git] / webpack.config.js
CommitLineData
c194f84c 1'use strict';
2
3var path = require('path');
4
5var webpack = require('webpack');
6
0e1221d7 7var packageJson = require('./package.json');
8
c194f84c 9var noErrorsPlugin = webpack.NoErrorsPlugin;
10
11var dedupePlugin = webpack.optimize.DedupePlugin;
12
13var config
14 = { cache: true
15 , target: 'node'
16 , entry: { index: './entry' }
0e1221d7 17 , externals: Object.keys(packageJson.dependencies).reduce(function(b, a){
18 b[a] = 'commonjs ' + a;
19 return b;
20 }, {})
c194f84c 21 , output: { path: __dirname
22 , filename: '[name].js'
23 , libraryTarget: 'commonjs2'
24 }
25 , plugins: [ new noErrorsPlugin()
26 , new dedupePlugin()
27 ]
28 , resolve: { modulesDirectories: [ 'build' ] }
29 }
30 ;
31
32module.exports = config;