Skip to content

Commit

Permalink
chore: Fix eslint issue in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
atdrago committed Feb 7, 2022
1 parent 53eef38 commit b06fb25
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"extends": ["plugin:@typescript-eslint/recommended"],
"files": ["**/*.ts"],
"parserOptions": {
"project": ["./tsconfig.json"]
"project": ["./tsconfig.json", "./tsconfig.test.json"]
}
}
],
Expand Down
5 changes: 5 additions & 0 deletions tsconfig.test.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"exclude": ["src"],
"extends": "./tsconfig.json",
"include": ["test"]
}

0 comments on commit b06fb25

Please sign in to comment.