Skip to content

Commit

Permalink
fix(tsconfig.json): utilize new tsconfig.eslint.json file
Browse files Browse the repository at this point in the history
  • Loading branch information
toddbluhm committed Aug 30, 2019
1 parent aad40c9 commit fb0976d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 deletions.
4 changes: 1 addition & 3 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
lib
commitlint.config.js
fixture.js
lib
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": "./lib/index.js",
"parserOptions": {
"project": "./tsconfig.json"
"project": "./tsconfig.eslint.json"
}
}
9 changes: 0 additions & 9 deletions src/fixture.js

This file was deleted.

12 changes: 12 additions & 0 deletions tsconfig.eslint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"allowJs": true,
"checkJs": true
},
"include": [
"src/**/*",
"*.ts",
"*.js"
]
}

0 comments on commit fb0976d

Please sign in to comment.