initial checkin

This commit is contained in:
Ceolter
2016-01-22 06:59:38 +00:00
parent 52f13438d1
commit e89f641a66
2 changed files with 0 additions and 0 deletions

22
webpack.config.js Normal file
View File

@@ -0,0 +1,22 @@
module.exports = {
entry: "./src/index.js",
output: {
path: __dirname,
filename: "bundle.js"
},
module: {
loaders: [
{
test: /\.css$/,
loader: "style!css"
},
{
test: /\.js$|\.jsx$/,
loader: 'babel-loader',
query: {
presets: ['react', 'es2015']
}
}
]
}
};