Describe the bug
While trying to open https://carbon.now.sh/ on the ms edge, the inputbox doesn't show at all. Like following:

And you will get an error in the console:


It seems that the ms edge doesn't support the spread operator at all
To Reproduce
Just open https://carbon.now.sh/ on ms edge browser. On my PC, i use Microsoft Edge 44.18362.449.0 and the EdgeHTML is 18.18363
Expected behavior
The inputbox show
Screenshots



Info (please complete the following information):
@Timer does Next.js not transpile spread operators?
@Gaojianli potentially this is an issue with one of our dependencies. Can you tell which dependency this code is coming from? You should be able to tell by searching through the node_modules
@mfix22 Next.js transpiles spread operators within first-party code.
If one of your node_modules deps is shipping with it, it will not be compiled.
This could be the line causing it: https://github.com/graphql/graphiql/blob/master/packages/graphql-language-service-parser/src/onlineParser.ts#L238
Most helpful comment
@mfix22 Next.js transpiles spread operators within first-party code.
If one of your
node_modulesdeps is shipping with it, it will not be compiled.