Add basic chart with grid story + Fix all build config

This commit is contained in:
2018-06-28 14:04:45 +05:30
parent efcf4febaa
commit cf246a1778
6 changed files with 117 additions and 6 deletions
+15 -1
View File
@@ -18,7 +18,21 @@ module.exports = {
rules: [
{ test: /\.js$/, loader: 'babel-loader' },
// all files with a `.ts` or `.tsx` extension will be handled by `ts-loader`
{ test: /\.tsx?$/, loader: 'babel-loader!ts-loader' }
{ test: /\.tsx?$/, loader: 'babel-loader!ts-loader' },
{
test: /\.css$/,
use: [
{
loader: 'style-loader',
},
{
loader: 'css-loader',
options: {
sourceMap: true,
},
},
],
},
]
},
plugins: [