Add numeric history plot

Resolves #31
This commit is contained in:
Thomas Nordquist
2019-01-19 18:59:14 +01:00
parent b23ffd334d
commit 07bfde6244
7 changed files with 534 additions and 13 deletions

View File

@@ -39,7 +39,12 @@ module.exports = {
{ test: /\.tsx?$/, loader: "awesome-typescript-loader" },
// All output '.js' files will have any sourcemaps re-processed by 'source-map-loader'.
{ enforce: "pre", test: /\.js$/, loader: "source-map-loader" }
{ enforce: "pre", test: /\.js$/, loader: "source-map-loader" },
{
test: /\.css$/,
use: ['style-loader', 'css-loader'],
},
]
},