Skip to content

Commit 033e8ae

Browse files
committed
Fix type checking to exclude test files that depend on build output
1 parent cbba6d3 commit 033e8ae

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tsconfig.check.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
"noPropertyAccessFromIndexSignature": false,
88
"noUncheckedIndexedAccess": false,
99
"types": ["vitest/globals", "node"],
10-
"verbatimModuleSyntax": false
10+
"verbatimModuleSyntax": false,
11+
"skipLibCheck": true
1112
},
12-
"include": ["test/**/*.mts", "src/**/*.ts"]
13+
"include": ["src/**/*.ts"],
14+
"exclude": ["test/**/*.mts"]
1315
}

0 commit comments

Comments
 (0)