Skip to content

Commit fb0976d

Browse files
committed
fix(tsconfig.json): utilize new tsconfig.eslint.json file
1 parent aad40c9 commit fb0976d

File tree

4 files changed

+14
-13
lines changed

4 files changed

+14
-13
lines changed

.eslintignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
lib
2-
commitlint.config.js
3-
fixture.js
1+
lib

.eslintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"extends": "./lib/index.js",
33
"parserOptions": {
4-
"project": "./tsconfig.json"
4+
"project": "./tsconfig.eslint.json"
55
}
66
}

src/fixture.js

Lines changed: 0 additions & 9 deletions
This file was deleted.

tsconfig.eslint.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"extends": "./tsconfig.json",
3+
"compilerOptions": {
4+
"allowJs": true,
5+
"checkJs": true
6+
},
7+
"include": [
8+
"src/**/*",
9+
"*.ts",
10+
"*.js"
11+
]
12+
}

0 commit comments

Comments
 (0)