Skip to content

Commit 3aece69

Browse files
committed
fix: update tsconfig
1 parent 5a872de commit 3aece69

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.eslintrc.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module.exports = {
44
parserOptions: {
55
ecmaVersion: 2022,
66
sourceType: 'module',
7-
project: './tsconfig.json',
7+
project: './tsconfig.eslint.json',
88
},
99
plugins: ['@typescript-eslint', 'import'],
1010
extends: [

tsconfig.eslint.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"extends": "./tsconfig.json",
3+
"include": ["src/**/*.ts", "tests/**/*.ts"]
4+
}

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"include": ["src/**/*.ts", "tests/**/*.ts"],
2+
"include": ["src/**/*.ts"],
33
"compilerOptions": {
44
"skipLibCheck": true,
55
"allowSyntheticDefaultImports": true,

0 commit comments

Comments
 (0)