About 2,120,000 results
Open links in new tab
  1. What is TypeScript and why should I use it instead of JavaScript?

    What is the TypeScript language? What can it do that JavaScript or available libraries cannot do, that would give me reason to consider it?

  2. Can't find Typescript compiler: Command "tsc" is not valid

    Just installed Typescript extension to VS2012 and followed Install TypeScript for Visual Studio 2012 and then the tutorial to call the compiler: > tsc greeter.ts But when i try to compile .ts f...

  3. Usage of the TypeScript compiler argument 'skipLibCheck'

    Sep 13, 2018 · I've been researching around for a further explanation into the skipLibCheck TypeScript compiler argument to determine the safety of having this set to true. The most in …

  4. Are there any engines to execute TypeScript code directly?

    Nov 17, 2021 · When I first studied TypeScript, I found that node.js doesn't execute TypeScript, so you need to install a TypeScript compiler that converts your TypeScript code into …

  5. 'tsc command not found' in compiling typescript - Stack Overflow

    Sep 9, 2016 · I want to install typescript, so I used the following command: npm install -g typescript and test tsc --version, but it just show 'tsc command not found'. I have tried many …

  6. How to compile TypeScript code in the browser? - Stack Overflow

    Is it possible to run the TypeScript compiler in the browser for transpiling TS to JS 100% in the browser. The use case would be implementing an online TypeScript IDE that runs 100% client …

  7. How to compile typescript using npm command? - Stack Overflow

    You can launch the tsc command (typescript compiler) with --watch argument. Here is an idea : Configure typescript using tsconfig.json file Run tsc --watch, so every time you change a .ts …

  8. typescript - Visual Studio Code compile on save - Stack Overflow

    How can I configure Visual Studio Code to compile typescript files on save? I see it is possible to configure a task to build the file in focus using the ${file} as an argument. But I would like...

  9. This is not the tsc command you are looking for - Stack Overflow

    May 24, 2021 · $ npx tsc --version This is not the tsc command you are looking for To get access to the TypeScript compiler, tsc, from the command line either: - Use npm install typescript to …

  10. is it possible for Angular cli to use the new typescript compiler …

    Jun 11, 2025 · I'm working on a big Angular project. The compilation time is quite long. I've heard that Microsoft released a new typescript compiler, which is written in GO and is 10x faster than …