initial commit

This commit is contained in:
Henrique Dias
2018-02-01 12:17:04 +00:00
commit e6c0d1c28a
128 changed files with 9592 additions and 0 deletions

13
.babelrc Normal file
View File

@@ -0,0 +1,13 @@
{
"presets": [
["env", { "modules": false }],
"stage-2"
],
"plugins": ["transform-runtime"],
"env": {
"test": {
"presets": ["env", "stage-2"],
"plugins": [ "istanbul" ]
}
}
}