Initial commit: webpack building a blank canvas

This commit is contained in:
2018-03-31 01:07:44 -04:00
commit 391182251c
10 changed files with 12980 additions and 0 deletions

9
.eslintrc.js Normal file
View File

@@ -0,0 +1,9 @@
module.exports = {
"extends": "airbnb-base",
"plugins": [
"import"
],
"env": {
"browser": true,
}
};