我在我的文件app.spec.ts中有这个导入:

import app from './app';

是什么导致了这个Typescript错误

2:17  error  Unable to resolve path to module './app'  import/no-unresolved

/应用程序。ts确实存在,但我没有将.ts文件编译成.js文件。一旦我把.ts文件编译成.js文件,错误就消失了。

然而,由于eslint应该与typescript一起工作,它应该用.ts而不是.js来解析模块。

我还在eslint配置文件中添加了typescript信息:

"parser": "@typescript-eslint/parser",
"parserOptions": {
    "project": "./tsconfig.json"
}

我如何配置eslint在这样一种方式,它试图解决模块与.ts而不是.js?

编辑# 1

app.ts的内容:

import bodyParser from 'body-parser';
import express from 'express';
import graphqlHTTP from 'express-graphql';
import { buildSchema } from 'graphql';

const app = express();

const schema = buildSchema(`
    type Query {
        hello: String
    }
`);
const root = { hello: () => 'Hello world!' };

app.use(bodyParser());
app.use('/graphql', graphqlHTTP({
    schema,
    rootValue: root,
    graphiql: true,
}));

export default app;

当前回答

ts和eslint都在对我吼叫,所以我必须在.eslintrc文件中添加以下内容:

{ 
    ...
    "rules": {
        ....
        "import/extensions": "off"
    },
    "settings": {
        ....
        "import/resolver": {
            "node": {
                "extensions": [".js", ".jsx", ".ts", ".tsx"]
            }
        }
    }
}

其他回答

如果你已经更新了你的.eslintrc和tsconfig。Json文件的建议在其他答案,你仍然有问题-重新启动vscode。

以防万一,如果有人需要支持子目录以及。例如,它支持

src/components/输入=> components/输入 src/火灾/外部请求=>外接/请求 设置:= 进口- resolver: { “节点”:{ “路”:[“src”,“src/ fire”], “分机”:(“js”)jsx”、“。ts”、“tsx。”] 的 的 的

这是eslint ^6.1.0的工作示例

在我的例子中,ESLint不能解析从DefinitelyTyped (@type/ packages)安装的类型,所以我必须像这样在.eslintrc中指定在哪里找到它们:

"import/resolver": {
    "typescript": {},
    "node": {
        "extensions": [".js", ".ts"],
        "paths": ["node_modules/", "node_modules/@types"]
    }
},

我还添加了"typescript":{},这基本上是为了使用tsconfig中的配置。我已经安装了eslint-import-resolver-typescript,让它工作。

首先在extends下面添加"plugin:import/typescript":

"extends": [
    "airbnb-base",
    "plugin:import/typescript"
 ],

下面是规则

"rules": {
        "import/extensions": [
            "error",
            "ignorePackages",
            {
                "ts": "never"
            }
        ]
    }

就我而言,我只是需要改变

import { SetOptional, SetRequired } from 'type-fest';

to

import type { SetOptional, SetRequired } from 'type-fest';