mirror of
https://github.com/openclaw/openclaw.git
synced 2026-02-15 14:49:29 +00:00
Adds a separate tsconfig that includes only *.test.ts files (which the main tsconfig excludes). Available via 'pnpm tsgo:test' for incremental cleanup. Not yet wired into 'pnpm check' there are ~2.8k pre-existing errors in test files that need to be fixed incrementally first.
9 lines
183 B
JSON
9 lines
183 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"noEmit": true
|
|
},
|
|
"include": ["src/**/*.test.ts", "extensions/**/*.test.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|