У мене є цей імпорт у моєму файлі app.spec.ts :
import app from './app';
Що спричиняє цю помилку Typescript
2:17 error Unable to resolve path to module './app' import/no-unresolved
./app.ts існує, але я не скомпілював файл .ts у файл .js. Як тільки я компілюю файл .ts у файл .js, помилка зникає.
Однак, оскільки eslint повинен працювати з машинописом, він повинен вирішувати модулі за допомогою .ts, а не .js.
Також я додав інформацію про машинопис у свій eslint
конфігураційний файл:
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
}
Як я можу налаштувати eslint таким чином, щоб він намагався вирішити модулі за допомогою .ts, а не .js?
На здоров’я!
EDIT # 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;
"plugins": ["@typescript-eslint"]
? Документи github.com/typescript-eslint/typescript-eslint/tree/master/…