About 77,500 results
Open links in new tab
  1. npm - how to upgrade typescript to a new major version - Stack …

    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 …

  2. How to have npm install a typescript dependency from a GitHub url ...

    Jun 28, 2018 · This doesn't work because: The package.json file of the modified package does not list the typescript files in the dist field, only the automatically generated JS files so the TypeScript files …

  3. Failed to install @typescript-eslint/eslint-plugin - Stack Overflow

    Aug 3, 2023 · In case someone uses eslint-config-standard-with-typescript make sure you pin @typescript-eslint/parser and @typescript-eslint/eslint-plugin to the exact same versions in your …

  4. How can I get TypeScript to load the PDF.js NPM module and @types ...

    18 Context I'm trying to import PDF.JS into a TypeScript project. I'm using the DefinitelyTyped bindings for pdfjs-dist, installed via npm install @types/pdfjs-dist and npm install pdfjs-dist. Problem I can't …

  5. Cannot install dependencies on React project using typescript ...

    Oct 5, 2023 · Any dependency that I try to install in project, I get a typescript conflict problem. I've tried to resolve it updating dependencies, downgrading it, removing node_modules and package-lock.json to

  6. How to resolve the dependency issues with npm install @types/react?

    Aug 21, 2023 · How to resolve the dependency issues with npm install @types/react? Asked 2 years, 3 months ago Modified 1 year, 2 months ago Viewed 3k times

  7. Next.js 15 build fails on Vercel: "Please install @types/node" — even ...

    Apr 22, 2025 · npx tsc --traceResolution this command show you all typescript worng . then try to fixed if you dont have any type issue , delete node_modules and package-lock.json then clear npm catch , …

  8. Npm Install is Failing (Could not resolve dependency)

    Feb 22, 2021 · C://projectFolder> node --version then C://projectFolder> npm -v step 2: If the version is mismatch then uninstall node in your machine then restart then install the node version of your friend.

  9. How to consume npm modules from typescript? - Stack Overflow

    Jul 6, 2016 · There are several ways to import modules from npm. But if you don't get typings, tsc will always complain that it can't find the module you are requiring (even if transpiled js is actually working).

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

    Sep 3, 2020 · 75 How to add typescript to Vue 3 and Vite project I will create a vite project to use typescript step by step: first, we should create a vite project at first