Skip to content

Commit

Permalink
NXJS-135: add marshallers to prevent converting circular structure to…
Browse files Browse the repository at this point in the history
… JSON
  • Loading branch information
troger committed Jul 6, 2018
1 parent 05669d4 commit 89d175d
Show file tree
Hide file tree
Showing 22 changed files with 9,490 additions and 324 deletions.
10 changes: 8 additions & 2 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
{
presets: ['es2015'],
plugins: ['add-module-exports', 'transform-es2015-modules-commonjs', ['transform-es2015-for-of', { loose: true }]]
"presets": ["es2017"],
"plugins": [
"add-module-exports",
"transform-es2015-modules-commonjs",
["transform-es2015-for-of", { "loose": true }],
"transform-object-rest-spread",
"transform-es2017-object-entries"
]
}
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "airbnb-base",
"rules": {
"arrow-body-style": ["error", "as-needed", { "requireReturnForObjectLiteral": true }],
"arrow-body-style": ["error", "as-needed"],
"arrow-parens": ["error", "always"],
"class-methods-use-this": "off",
"max-len": ["error", 120, 2, {
Expand Down
Loading

0 comments on commit 89d175d

Please sign in to comment.