Starting work of full width Renderer with React

This commit is contained in:
Alberto
2017-03-08 16:36:05 +01:00
parent 801bf16339
commit 7f8d1bb3a7
16 changed files with 1416 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
module.exports = {
entry: "./src-full-width/index.js",
output: {
path: __dirname,
filename: "dist/bundle.js"
},
module: {
loaders: [
{
test: /\.css$/,
loader: "style!css"
},
{
test: /\.js$|\.jsx$/,
loader: 'babel-loader',
query: {
presets: ['react', 'es2015']
}
}
]
},
resolve: {
alias: {
"ag-grid-root" : __dirname + "/node_modules/ag-grid"
}
}
};