Bu içe aktarma işlemi app.spec.ts dosyamda var :
import app from './app';
Bu Typescript hatasına neden olan
2:17 error Unable to resolve path to module './app' import/no-unresolved
./app.ts mevcut, ancak .ts dosyasını bir .js dosyasına derlemedim . .Ts dosyasını bir .js olarak derler derlemez hata ortadan kalkar.
Bununla birlikte, eslint'in typcript ile çalışması gerektiğinden, modülleri .js değil .ts ile çözmelidir.
eslint
Yapılandırma dosyama da typcript bilgilerini ekledim :
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
}
Eslint'i modülleri .js değil .ts ile çözümlemeye çalışacak şekilde nasıl yapılandırabilirim?
Şerefe!
DÜZENLE # 1
İçeriği 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"]
mi Docs github.com/typescript-eslint/typescript-eslint/tree/master/…