Couldn't use ts-node
with --max-http-header-size 15000
.
I can use it with node
, but there is no such option for ts-node
Asked
Active
Viewed 2,462 times
0

Krasnay Danil
- 101
- 1
- 9
-
1Would this work - https://stackoverflow.com/a/58667373/6453080 ? – thanatonian2311 Feb 13 '21 at 21:19
-
@thanatonian2311 Post you answer, I'll tick it! – Krasnay Danil Feb 13 '21 at 21:30
1 Answers
4
Try this:
node --max-http-header-size 15000 -r ts-node/register <FILE>.ts

thanatonian2311
- 331
- 2
- 11