错误 TS1259:模块 '"./node_modules/@types/express/index"' 只能使用 'esModuleInterop' 标志默认导入

Posted

技术标签:

【中文标题】错误 TS1259:模块 \'"./node_modules/@types/express/index"\' 只能使用 \'esModuleInterop\' 标志默认导入【英文标题】:error TS1259: Module '"./node_modules/@types/express/index"' can only be default-imported using the 'esModuleInterop' flag错误 TS1259:模块 '"./node_modules/@types/express/index"' 只能使用 'esModuleInterop' 标志默认导入 【发布时间】:2020-11-28 21:31:25 【问题描述】:

我正在尝试将 express 导入到项目中,并且在开发过程中,它刚刚停止工作,我已经重置了配置等。无法使其工作,无法导入任何模块。

npx tsc src/server.ts 
src/server.ts:1:8 - error TS1259: Module '"/home/fpc-ubut/Git/nlw2/server/node_modules/@types/express/index"' can only be default-imported using the 'esModuleInterop' flag

1 import express from 'express';
src/database/migrations/00_create_users.ts:1:8 - error TS1259: Module '"/home/fpc-ubut/Git/nlw2/server/node_modules/knex/types/index"' can only be default-imported using the 'esModuleInterop' flag

1 import Knex from 'knex'
src/server.ts:1:8 - error TS1259: Module '"path"' can only be default-imported using the 'esModuleInterop' flag

1 import path from 'path'

环境 操作系统:Ubuntu 20.04.1 LTS 节点:v12.18.1 包:

    "@types/express": "^4.17.6",
    "@types/node": "^14.0.27",
    "ts-node": "^8.10.2",
    "ts-node-dev": "^1.0.0-pre.44",
    "typescript": "^3.9.3"

    "express": "^4.17.1",
    "knex": "^0.21.1",
    "pg": "^8.2.1"

编辑1: 如被问及,这是我的 tsconfig.json。但是配置(“esModuleInterop”:true),已经是方面


    
      "compilerOptions": 
        /* Visit https://aka.ms/tsconfig.json to read more about this file */
    
        /* Basic Options */
        // "incremental": true,                   /* Enable incremental compilation */
        "target": "es5",                          /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */
        "module": "commonjs",                     /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */
        // "lib": [],                             /* Specify library files to be included in the compilation. */
        // "allowJs": true,                       /* Allow javascript files to be compiled. */
        // "checkJs": true,                       /* Report errors in .js files. */
        // "jsx": "preserve",                     /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
        // "declaration": true,                   /* Generates corresponding '.d.ts' file. */
        // "declarationMap": true,                /* Generates a sourcemap for each corresponding '.d.ts' file. */
        // "sourceMap": true,                     /* Generates corresponding '.map' file. */
        // "outFile": "./",                       /* Concatenate and emit output to single file. */
        // "outDir": "./",                        /* Redirect output structure to the directory. */
        // "rootDir": "./",                       /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
        // "composite": true,                     /* Enable project compilation */
        // "tsBuildInfoFile": "./",               /* Specify file to store incremental compilation information */
        // "removeComments": true,                /* Do not emit comments to output. */
        // "noEmit": true,                        /* Do not emit outputs. */
        // "importHelpers": true,                 /* Import emit helpers from 'tslib'. */
        // "downlevelIteration": true,            /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
        // "isolatedModules": true,               /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
    
        /* Strict Type-Checking Options */
        "strict": true,                           /* Enable all strict type-checking options. */
        // "noImplicitAny": true,                 /* Raise error on expressions and declarations with an implied 'any' type. */
        // "strictNullChecks": true,              /* Enable strict null checks. */
        // "strictFunctionTypes": true,           /* Enable strict checking of function types. */
        // "strictBindCallApply": true,           /* Enable strict 'bind', 'call', and 'apply' methods on functions. */
        // "strictPropertyInitialization": true,  /* Enable strict checking of property initialization in classes. */
        // "noImplicitThis": true,                /* Raise error on 'this' expressions with an implied 'any' type. */
        // "alwaysStrict": true,                  /* Parse in strict mode and emit "use strict" for each source file. */
    
        /* Additional Checks */
        // "noUnusedLocals": true,                /* Report errors on unused locals. */
        // "noUnusedParameters": true,            /* Report errors on unused parameters. */
        // "noImplicitReturns": true,             /* Report error when not all code paths in function return a value. */
        // "noFallthroughCasesInSwitch": true,    /* Report errors for fallthrough cases in switch statement. */
    
        /* Module Resolution Options */
        // "moduleResolution": "node",            /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
        // "baseUrl": "./",                       /* Base directory to resolve non-absolute module names. */
        // "paths": ,                           /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
        // "rootDirs": [],                        /* List of root folders whose combined content represents the structure of the project at runtime. */
        // "typeRoots": [],                       /* List of folders to include type definitions from. */
        // "types": [],                           /* Type declaration files to be included in compilation. */
        // "allowSyntheticDefaultImports": true,  /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
        "esModuleInterop": true,                  /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
        // "preserveSymlinks": true,              /* Do not resolve the real path of symlinks. */
        // "allowUmdGlobalAccess": true,          /* Allow accessing UMD globals from modules. */
    
        /* Source Map Options */
        // "sourceRoot": "",                      /* Specify the location where debugger should locate TypeScript files instead of source locations. */
        // "mapRoot": "",                         /* Specify the location where debugger should locate map files instead of generated locations. */
        // "inlineSourceMap": true,               /* Emit a single file with source maps instead of having a separate file. */
        // "inlineSources": true,                 /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
    
        /* Experimental Options */
        // "experimentalDecorators": true,        /* Enables experimental support for ES7 decorators. */
        // "emitDecoratorMetadata": true,         /* Enables experimental support for emitting type metadata for decorators. */
    
        /* Advanced Options */
        "skipLibCheck": true,                     /* Skip type checking of declaration files. */
        "forceConsistentCasingInFileNames": true  /* Disallow inconsistently-cased references to the same file. */
      
    

编辑 2: 更改了 tsconfig.json "allowSyntheticDefaultImports": true 仍然显示相同的错误

编辑 3: Github 链接:[已删除]

问题出在./server ./server2 工作得很好。相同的配置。

EDIT4:已解决

根据您的 GitHub 存储库,./server 没有 tsconfig 文件,而 .server2 确实有一个。如果我需要更清楚:它们没有相同的配置,因为服务器甚至没有配置.你应该将 ./server/src/tsconfig.json 移动到 ./server/tsconfig.json,就像你的 tsconfig 文件在 ./server2 中一样(注意我说 MOVE not COPY the tsconfig).. – Matt Oestreich

【问题讨论】:

显示您的tsconfig.json 文件将比您的package.json 更重要...也许,this may help? 那么发生了什么变化?您的 tsconfig.json 文件最近是否被修改过?您是否更改了导入语句?您是否尝试过基本的故障排除?请帮助人们帮助你。 根据您的 GitHub 存储库,./server 没有 tsconfig 文件,而 .server2 确实有一个 .. 如果我需要更清楚:它们没有相同的配置,因为 @ 987654335@ 甚至没有配置。您应该将./server/src/tsconfig.json 移动到./server/tsconfig.json,就像您的tsconfig 文件在./server2 中一样(注意我说的是移动而不是复制tsconfig).. FranciscoPena,请试试这个:你应该把./server/src/tsconfig.json移动到./server/tsconfig.json,就像你的tsconfig文件在./server2中一样(注意我说的是移动而不是复制tsconfig).. FranciscoPena 哈哈不用担心 - 我们都会犯错误,有时会忽略一些小事。我继续添加了官方答案,因此如果我的解决方案解决了您的问题,请务必将其标记为已接受的答案。 【参考方案1】:

就我而言,我遇到了这个反应错误。我通过更改我的导入样式来修复它

import React from 'react';

import * as React from 'react';

【讨论】:

这里相同(不使用 React)。这是最佳解决方案的原因是 JSON 文件没有默认导出,因此您需要在导入时指定名称。【参考方案2】:

由于错误状态,您需要设置

"esModuleInterop": true,

在您的tsconfig.json 文件中。这允许从没有默认导出的模块进行默认导入。

【讨论】:

我的 tsconfig.json 已经显示了配置 "esModuleInterop": true allowSyntheticDefaultImports设置为true怎么样? 更改它:“allowSyntheticDefaultImports”:true,仍然显示错误 是的,它在评论中,我应该为打字稿提出问题吗?我刚刚从另一个项目中复制了 tsconfig 文件,它按预期工作,相同的模块,回滚相同版本的模块等。我将发布 github 链接,它来自“bootcamp” 把这个放在"compilerOptions"下:"esModuleInterop": true,)【参考方案3】:

根据您的 GitHub 存储库,您具有以下结构(省略了一些文件/目录):

不好:

服务器 源 tsconfig.json 服务器2 源代码 tsconfig.json

您需要将 /server/src/tsconfig.json 移动到 /server/tsconfig.json - 请注意,您需要移动,而不是复制 tsconfig 文件。

好:

服务器 源代码 tsconfig.json 服务器2 源代码 tsconfig.json

【讨论】:

【参考方案4】:

tsconfig.json


  "compilerOptions": 
    "esModuleInterop": true,
  


【讨论】:

以上是关于错误 TS1259:模块 '"./node_modules/@types/express/index"' 只能使用 'esModuleInterop' 标志默认导入的主要内容,如果未能解决你的问题,请参考以下文章

错误 TS2305:模块 '"http"' 没有导出的成员 'OutgoingHttpHeaders'。尝试将电子更新器添加到电子项目中时

打字稿导入文本文件“错误 TS2307:找不到模块”

VSCode 在编译时显示 .vue 导入的“找不到模块”TS 错误

为啥模块的导入导出会给出错误,因为声明了“BlogpostModule”但它的值从不读取.ts(6133)“角度7

错误 TS2305:模块“/node_modules/rxjs/Rx”没有导出的成员“可订阅”

模块“react”没有导出成员“SuspenseList”。 TS2305