Revert "feat(turbopack): support next.js specific node polyfills" (#55385)
Reverts vercel/next.js#55343
Closes WEB-1562
it fails CI with:
```
● node builtins › should support node.js builtins in server component
SyntaxError: Unexpected end of JSON input
at JSON.parse (<anonymous>)
124 |
125 | const data = $('#node-browser-polyfills').text()
> 126 | const parsedData = JSON.parse(data)
| ^
127 |
128 | expect(parsedData.vm).toBe(105)
129 | expect(parsedData.hash).toBe(
at Object.<anonymous> (development/basic/node-builtins.test.ts:126:31)
● node builtins › should support node.js builtins prefixed by node: in server component
SyntaxError: Unexpected end of JSON input
at JSON.parse (<anonymous>)
149 |
150 | const data = $('#node-browser-polyfills').text()
> 151 | const parsedData = JSON.parse(data)
| ^
152 |
153 | expect(parsedData.vm).toBe(105)
154 | expect(parsedData.hash).toBe(
at Object.<anonymous> (development/basic/node-builtins.test.ts:151:31)
```
@kwonoj