UNPKG

550 BJavaScriptView Raw
1module.exports = {
2 cache: true,
3 context: __dirname + '/coffee',
4 entry: './react-countdown-clock.coffee',
5 output: {
6 path: './build',
7 publicPath: '/build/',
8 filename: 'react-countdown-clock.js',
9 library: 'ReactCountdownClock',
10 libraryTarget: 'umd'
11 },
12 devtool: 'source-map',
13 externals: {
14 react: {
15 root: 'React',
16 commonjs: 'react',
17 commonjs2: 'react',
18 amd: 'react'
19 }
20 },
21 module: {
22 loaders: [
23 {
24 test: /\.coffee$/,
25 loader: 'coffee!cjsx'
26 }
27 ]
28 }
29};