Start of project

This commit is contained in:
benjaminramey
2019-11-09 21:30:27 -06:00
commit 708eed82e5
15 changed files with 9443 additions and 0 deletions

15
.babelrc Normal file
View File

@@ -0,0 +1,15 @@
{
"plugins": [
"@babel/plugin-proposal-optional-chaining"
],
"presets": [
["@babel/preset-env", {
"useBuiltIns": "usage",
"corejs": 3,
"targets": {
// https://jamie.build/last-2-versions
"browsers": ["> 0.25%", "not ie 11", "not op_mini all"]
}
}]
]
}