Skip to content

Commit

Permalink
initial working draft
Browse files Browse the repository at this point in the history
  • Loading branch information
joonhocho committed Aug 8, 2017
1 parent 0a3c35c commit 68e0b2c
Show file tree
Hide file tree
Showing 11 changed files with 838 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"presets": [
["env", {
"targets": {
"node": "current"
},
"exclude": [
"transform-regenerator"
],
"debug": true
}]
],
"plugins": [
"transform-class-properties",
["transform-object-rest-spread", {
"useBuiltIns": true
}],
["module-resolver", {
"alias": {
"src": "./src"
}
}],
["fast-async", {
"env": {
"augmentObject": false,
"dontMapStackTraces": true,
"dontInstallRequireHook": true
},
"compiler": {
"promises": true,
"generators": false
},
"runtimePattern": null,
"useRuntimeModule": false
}]
]
}

0 comments on commit 68e0b2c

Please sign in to comment.