https://github.com/fholzer/babel-issue
https://github.com/fholzer/babel-issue
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fholzer/babel-issue
- Owner: fholzer
- Created: 2015-11-21T11:12:12.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-11-21T11:30:17.000Z (over 10 years ago)
- Last Synced: 2023-03-24T07:03:45.839Z (about 3 years ago)
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Background
This repository showcases a bug related to the es2015 preset in connection with module transformers.
`typeof x === "object"` triggers an exception: `RangeError: Maximum call stack size exceeded` whith this `.babelrc`:
````
{
"presets": [
"es2015",
],
"plugins": [
"transform-es2015-modules-amd",
]
}
````
# Test
## Compile Test
````
gulp
````
## Run the test
````
node runTest.js
````