After installing VS 2019, I noticed that Microsoft.TypeScript.MSBuild 4.2.3 was added.
On my Windows 10 OS, I also installed it using NPM in the following way:
However, upon opening VS 2019, I encountered the warning below:
TypeScript 3.4 feature Current language level is 3.1
https://i.sstatic.net/p29Ko.png
tsc --version
Version 4.2.3
tsconfig.json
{
"compilerOptions": {
"noImplicitAny": false,
"noEmitOnError": true,
"removeComments": false,
"sourceMap": true,
"target": "es6",
"strict": true,
"strictNullChecks": true
},
"exclude": [
"node_modules"
],
"compileOnSave": true
}
https://learn.microsoft.com/en-us/visualstudio/javascript/javascript-in-vs-2019?view=vs-2019