Skip to content

Commit

Permalink
fix eslint config to use new test-specific tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
lobsterkatie committed Dec 3, 2021
1 parent 821f543 commit ccd2ad0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,13 @@ module.exports = {
{
files: ['*.ts', '*.tsx', '*.d.ts'],
parserOptions: {
project: './tsconfig.json',
project: ['tsconfig.json'],
},
},
{
files: ['test/**/*.ts', 'test/**/*.tsx'],
parserOptions: {
project: ['tsconfig.test.json'],
},
},
{
Expand Down

0 comments on commit ccd2ad0

Please sign in to comment.