grid mostly there

This commit is contained in:
2018-12-27 15:17:23 -08:00
parent 907d15d481
commit 9c052aebd2
14 changed files with 1418 additions and 24 deletions

View File

@@ -1,3 +1,5 @@
var path = require("path");
module.exports = {
entry: "./src/index.tsx",
output: {
@@ -5,9 +7,15 @@ module.exports = {
path: __dirname + "/dist"
},
mode: "development",
// Enable sourcemaps for debugging webpack's output.
devtool: "source-map",
devServer: {
port: 8080
},
resolve: {
// Add '.ts' and '.tsx' as resolvable extensions.
extensions: [".ts", ".tsx", ".js", ".json"]