fix: update TypeScript configuration for correct root directory and test exclusion

This commit is contained in:
2026-02-20 21:08:20 -05:00
parent 19ef9042ce
commit 4417b7ade9
4 changed files with 10 additions and 7 deletions

View File

@@ -1,10 +1,10 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"rootDir": "./src",
"rootDir": "./lib",
},
"exclude": [
"tests/**/*",
"*.test.ts",
"vitest.config.ts",
]
}