feat(KB-141): fix workspace type resolution and add clean-checkout typecheck tests

- Remove dist-dependent workspace type resolution from all tsconfig files

- Add clean-checkout typecheck regression test to CI suite

- Update package.json type definitions for core, engine, dashboard, and cli packages

- Update README with typecheck testing documentation

- Clean up unused test files and component dependencies
This commit is contained in:
gsxdsm
2026-03-30 08:24:16 -07:00
parent 82ed74e6b1
commit 555cbd9ddc
21 changed files with 186 additions and 59 deletions

View File

@@ -60,6 +60,7 @@
"@kb/dashboard": "workspace:*",
"@kb/engine": "workspace:*",
"@sinclair/typebox": "^0.34.0",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^3.1.0",
"tsup": "^8.5.1",
"tsx": "^4.19.0",

View File

@@ -2,8 +2,9 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src"
"rootDir": "src",
"types": ["node", "vitest/globals"]
},
"include": ["src"],
"exclude": ["src/**/*.test.ts"]
"include": ["src/**/*"],
"exclude": ["src/**/*.test.ts", "src/**/__tests__/**/*"]
}