简体   繁体   中英

TypeScript error "TS2354: This syntax requires an imported helper but module 'tslib' cannot be found"

I have reduced a problem with TypeScript to the following example. When trying to run tsc, I get the following error message but tslib should be available.

https://codesandbox.io/s/quizzical-mclean-n9vvi?fontsize=14&hidenavigation=1&theme=dark

$ tsc --noEmit --project ./tsconfig.json

index.js:3:8 - error TS2354: This syntax requires an imported helper but module 'tslib' cannot be found.

3 const {ArgumentParser} = require('argparse');
         ~~~~~~~~~~~~~~
Found 1 error.

package.json

{
  "name": "test",
  "version": "1.0.0",
  "description": "",
  "main": "index.ts",
  "scripts": {
    "test": "tsc --noEmit --project ./tsconfig.json"
  },
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "@types/argparse": "1.0.38",
    "argparse": "1.0.10",
    "tslib": "1.11.1",
    "typescript": "3.8.3"
  }
}

tsconfig.json

{
  "compilerOptions": {
    "checkJs": true,
    "allowJs": true,
    "moduleResolution": "node",
    "target": "es2018",
    "module": "commonjs",
    "importHelpers": true,
    "lib": [
      "es2018"
    ]
  },
  "include": [
    "*.js"
  ],
  "exclude": [
    "node_modules"
  ]
}

index.js

'use strict';

const {ArgumentParser} = require('argparse');

The issue has now been confirmed as a bug in TypeScript https://github.com/microsoft/TypeScript/issues/37991

I think you need to install "tslib" using the following command.

npm i -g tslib

I Resolve this issue by using below copy-anything npm command

npm i copy-anything

The answer to this question error TS2307: Cannot find module '@angular/core' , which is

npm install --save @angular/material @angular/cdk
rm -rf node_modules
npm install

solved my issue.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM