Adding in TODO MVC example using web-sys

This commit is contained in:
Jonathan Kingston
2018-10-13 01:21:14 +01:00
parent cb170ef94f
commit b322f46303
22 changed files with 1995 additions and 0 deletions

View File

@ -0,0 +1,10 @@
const path = require('path');
module.exports = {
entry: './index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'index.js',
},
mode: 'development'
};