react-countdown-clock
Version:
HTML5 canvas countdown clock React component
30 lines (29 loc) • 550 B
JavaScript
module.exports = {
cache: true,
context: __dirname + '/coffee',
entry: './react-countdown-clock.coffee',
output: {
path: './build',
publicPath: '/build/',
filename: 'react-countdown-clock.js',
library: 'ReactCountdownClock',
libraryTarget: 'umd'
},
devtool: 'source-map',
externals: {
react: {
root: 'React',
commonjs: 'react',
commonjs2: 'react',
amd: 'react'
}
},
module: {
loaders: [
{
test: /\.coffee$/,
loader: 'coffee!cjsx'
}
]
}
};