From 8472b94fcbe584c55e6be3cd4d542c05dcbf9f69 Mon Sep 17 00:00:00 2001 From: Chika Date: Tue, 17 May 2022 09:44:48 +0300 Subject: [PATCH] remove tsconfig.eslint.json --- .eslintrc.json | 2 +- tsconfig.eslint.json | 4 ---- tsconfig.json | 2 +- 3 files changed, 2 insertions(+), 6 deletions(-) delete mode 100644 tsconfig.eslint.json diff --git a/.eslintrc.json b/.eslintrc.json index 68be561..3410de2 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -6,7 +6,7 @@ }, "extends": ["next", "prettier", "airbnb", "airbnb-typescript"], "parserOptions": { - "project": "./tsconfig.eslint.json" + "project": "./tsconfig.json" }, "plugins": ["react", "prettier"], "rules": { diff --git a/tsconfig.eslint.json b/tsconfig.eslint.json deleted file mode 100644 index 9893d4f..0000000 --- a/tsconfig.eslint.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "extends": "./tsconfig.json", - "include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx"] -} diff --git a/tsconfig.json b/tsconfig.json index 5d2f064..3e0a45e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -18,6 +18,6 @@ "typeRoots": ["node_modules/@types", "@types"] }, "files": ["types/graphql.d.ts"], - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx"], "exclude": ["node_modules"] }