UNPKG

cluedin-widget

Version:

This project contains all the pages needed for browsing entities and searching them. The aim is to replace the CluedIn.Webapp project with this one when all the pages ( including the Admin page ) will be ported to REACT.

36 lines 760 B
module.exports = { //entry: './build/index.js', /*output: { path: 'builds', filename: 'testwebpack.js' },*/ devtool: 'inline-source-map', resolve: { extensions: ['', '.js', '.jsx'], }, module: { loaders: [ { test: /\.js$/, loader: 'babel', exclude: /node_modules/, query: { presets: ["es2015", "stage-1"], } }, { test: /\.jsx$/, loader: 'babel', exclude: /node_modules/, query: { presets: ["es2015", "react", "stage-1"], plugins: ["transform-decorators-legacy", "transform-object-rest-spread"], }, }, { test: /\.css$/, loaders: ['style', 'css?module'] }, ], }, };