python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Is NestJS compatible with es2020 typescript?
when building a skeleton NestJS app, it sets es2017 in tsconfig. When trying to change it to es2020, it seems to work but hard to say without testing everything. I was unable to find any insights onli...

Sagi Mann
Votes: 0
Answers: 0
How to get Typescript to compile CommonJS imports?
I have written a TS file, that loads in a 3rd party package, using import XXX { YYY, ABC, 123 }from 'XXX';
It will compile to CommonJS no issue, and thats OK. But I'd like to compile it to an ESModule...
Mr Pablo
Votes: 0
Answers: 1
How to run Typescript ES6+ server side via .net core and nodejs using Jering.Javascript.NodeJS
I want to run some TypeScript Code written in ES2020 on Server Side. Currently i have running a ASP.NET Core Application so the idea was to run js via Jering.Javascript.NodeJS and nodejs.
So started w...
Peter Paan
Votes: 0
Answers: 1
Cant use BigInt in TS project regardless of es2020
I have simple TS project where this is my tsconfig.json
{
"compilerOptions": {
"target": "es2020",
"lib": ["es2020"],
}
}
And I have one ...
Weeedooo
Votes: 0
Answers: 1