Skip to content

Commit b6631b1

Browse files
committed
fix eslint config to use new test-specific tsconfig
1 parent c4a89d7 commit b6631b1

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.eslintrc.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,13 @@ module.exports = {
1515
{
1616
files: ['*.ts', '*.tsx', '*.d.ts'],
1717
parserOptions: {
18-
project: './tsconfig.json',
18+
project: ['tsconfig.json'],
19+
},
20+
},
21+
{
22+
files: ['test/**/*.ts', 'test/**/*.tsx'],
23+
parserOptions: {
24+
project: ['tsconfig.test.json'],
1925
},
2026
},
2127
{

0 commit comments

Comments
 (0)