singularity-forge/tsconfig.extensions.json
ace-pm b29c12d5e5 refactor(native): rename gsd_parser.rs to forge_parser.rs
Final rebrand: rename remaining Rust source file to complete the gsd → forge
transition. All parser references already use forge_parser after earlier commits.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-15 14:58:21 +02:00

24 lines
876 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"noEmit": true,
"allowImportingTsExtensions": true,
"allowJs": true,
"checkJs": false,
"rootDir": ".",
"baseUrl": ".",
"paths": {
"@sf-run/pi-coding-agent": ["packages/pi-coding-agent/src/index.ts"],
"@sf-run/pi-ai": ["packages/pi-ai/src/index.ts"],
"@sf-run/pi-ai/*": ["packages/pi-ai/src/*.ts"],
"@sf-run/pi-agent-core": ["packages/pi-agent-core/src/index.ts"],
"@sf-run/pi-tui": ["packages/pi-tui/src/index.ts"],
"@sf-run/native": ["packages/native/src/index.ts"],
"@sf-run/native/*": ["packages/native/src/*/index.ts"],
"@singularity-forge/mcp-server": ["packages/mcp-server/src/index.ts"],
"@singularity-forge/rpc-client": ["packages/rpc-client/src/index.ts"]
}
},
"include": ["src/resources/extensions"],
"exclude": []
}