aboutsummaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authorTyler Schicke <tyler_schicke@brown.edu>2019-02-04 22:20:27 -0500
committerTyler Schicke <tyler_schicke@brown.edu>2019-02-05 18:48:53 -0500
commitfa2c1b3304cd55654e23a3bf3d3b0ec6d7f6d9a0 (patch)
tree0c4a36ee576226daec098f777e58147c1ff909d5 /webpack.config.js
parent136194eba78c0427926cba0be9a11650e6f4be2b (diff)
More scripting/typescript stuff
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/webpack.config.js b/webpack.config.js
index a30868b93..1a7c9286e 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -7,6 +7,10 @@ module.exports = {
mode: 'development',
entry: "./src/Main.tsx",
devtool: "source-map",
+ node: {
+ fs: 'empty',
+ module: 'empty'
+ },
output: {
filename: "./bundle.js",
path: path.resolve(__dirname, "build")