Answers for "how to run typescript in vscode"

0

how to run typescript in vscode

$ npm install -g typescript

//Add a tsconfig.json:
{
  "compilerOptions": {
    "target": "es5",
    "module": "commonjs",
    "sourceMap": true
  }
}
//In the Terminal top menu click on Run Build Task
Posted by: Guest on February-02-2022

Code answers related to "TypeScript"

Browse Popular Code Answers by Language