fix: build failure due to tests (#1283)

This commit is contained in:
Tom Keller
2025-02-04 15:05:30 -08:00
committed by GitHub
parent b8ef615781
commit 134d71efe0
5 changed files with 19 additions and 14 deletions
+6 -4
View File
@@ -22,12 +22,14 @@
"lib": [ "ES2020" ],
"target": "ES2020",
"noErrorTruncation": true,
"esModuleInterop": true
"esModuleInterop": true,
"rootDir": "src",
},
"include": [
"src/**/*.ts",
"test/**/*.test.ts"
"src/**/*.ts"
],
"exclude": [
"test/**/*.ts"
],
"exclude": [],
}