Skip to content
This repository was archived by the owner on Dec 28, 2021. It is now read-only.

Commit bd34b92

Browse files
committed
chore: create custom tsconfig for linter
1 parent 4f3211a commit bd34b92

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.eslintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
],
1010
"parser": "@typescript-eslint/parser",
1111
"parserOptions": {
12-
"project": "tsconfig.json",
12+
"project": "tsconfig.eslint.json",
1313
"sourceType": "module"
1414
},
1515
"plugins": [

tsconfig.eslint.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"extends": "./tsconfig.json",
3+
"include": [
4+
"src/**/*.ts",
5+
"tests/**/*.ts",
6+
"example/**/*.ts"
7+
]
8+
}

0 commit comments

Comments
 (0)