About 9,710,000 results
Open links in new tab
  1. 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.

  2. 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...

  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. 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 …

  5. 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 …

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

  7. 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 …

  8. 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

  9. 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 …

  10. typescript - How to fix 'tsc: command not found' - Stack Overflow

    Apr 19, 2019 · I'm currently trying to install typescript on my machine for the first time. After installing node I run the following command: sudo npm -g install typescript This yields what appears to be a …