All bumps typecheck clean and pass 129 test files (1118 tests). - @google/genai 1.45→2.0: backward-compatible for SF's API usage - marked 15→18: no API changes affecting pi-tui markdown component - diff 8→9: clean typecheck - undici 7.25→8.2: clean typecheck - proxy-agent 6→8: clean typecheck - express 4→5 (pi-coding-agent only): clean typecheck - typescript 5.9→6.0: added ignoreDeprecations for baseUrl+paths - daemon typescript ^5.4→^6.0.3 aligned with root Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
36 lines
1.1 KiB
JSON
36 lines
1.1 KiB
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true,
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"ignoreDeprecations": "6.0",
|
|
"target": "ES2024",
|
|
"lib": ["ES2024", "DOM", "DOM.Iterable"],
|
|
"rootDir": ".",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@singularity-forge/pi-coding-agent": [
|
|
"packages/pi-coding-agent/src/index.ts"
|
|
],
|
|
"@singularity-forge/pi-ai": ["packages/pi-ai/src/index.ts"],
|
|
"@singularity-forge/pi-ai/*": ["packages/pi-ai/src/*.ts"],
|
|
"@singularity-forge/pi-agent-core": [
|
|
"packages/pi-agent-core/src/index.ts"
|
|
],
|
|
"@singularity-forge/pi-tui": ["packages/pi-tui/src/index.ts"],
|
|
"@singularity-forge/native": ["packages/native/src/index.ts"],
|
|
"@singularity-forge/native/*": ["packages/rust-engine/src/*/index.ts"],
|
|
"@singularity-forge/rpc-client": ["packages/rpc-client/src/index.ts"]
|
|
}
|
|
},
|
|
"include": ["src/resources/extensions", "src/types.d.ts"],
|
|
"exclude": [
|
|
"src/resources/extensions/vectordrive/tests/**/*.ts",
|
|
"src/resources/extensions/**/tests/**/*.ts",
|
|
"src/resources/extensions/**/tests/**/*.mjs",
|
|
"src/tests/**/*.ts",
|
|
"src/tests/**/*.mjs"
|
|
]
|
|
}
|