About 8,320,000 results
Open links in new tab
  1. installation - How do I install TypeScript? - Stack Overflow

    TypeScript Version Issues and How to Update using NPM I had a similar issue, whereby I downloaded both 1.4 and the beta version of 1.5, when I ran the command tsc -v, it kept returning version 1.0...

  2. How to install and run Typescript locally in npm? - Stack Overflow

    Jun 25, 2016 · To install and run TypeScript locally in your npm project, follow these steps: Initialize Your Project: If you haven't already, create a new npm project or navigate to an existing one.

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

    Sep 9, 2016 · First Install typescript by running this command npm install typescript or npm install -g typescript [ for installing typescript globally ] then run npx tsc --version for checking version of …

  4. Install typescript for Ubuntu via npm vs using native packges (via apt)

    Sep 8, 2020 · 3 I want to add typescript to my Ubuntu and there are two methods for that: sudo apt update && sudo apt install node-typescript -y sudo npm install -g typescript My question is more than …

  5. tsc is not recognized as internal or external command

    Feb 13, 2016 · npm install -g typescript // installs typescript globally If you want to convert .ts files into .js, do this as per your need

  6. 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 first add …

  7. How to use create React app with TailwindCSS v4 - Stack Overflow

    Mar 11, 2025 · I tried to configure a new project using React, TypeScript and TailwindCSS v4 but Tailwind isn't applying. Here is my installation: npx create-react-app web npm install --save-dev …

  8. How to install older version of Typescript? - Stack Overflow

    Jun 21, 2016 · 29 to install globally npm install -g [email protected] to check open cmd and run tsc -v to install it for the specific project you are working on change to the directory of your project npm install …

  9. how to upgrade typescript to a new major version - Stack Overflow

    Sep 8, 2023 · The typescript runtime in my git repo still shows 4.9.5 even after I upgraded all packages and deleted node_modules and package-lock.json and re-installed with npm install. How can I get …

  10. How to add typescript to Vue 3 and Vite project - Stack Overflow

    Sep 3, 2020 · That seems to work, though I have no idea how typescript gets transpiled from the vue file though. Then I tried to rename the main.js to main.ts. Now nothing happen. I was thinking that I just …