- Update Dockerfile image name and package.json URLs to singularity-ng/singularity-foundry - Add uv to nix develop shell in flake.nix - Rename resolveGsdRoot → resolveSFRoot in src/cli.ts - Add PROXY_FAMILY_PRIORITY routing table + sortByFamilyPriority to proxy-server.ts - Fix duplicate scope key and simplify link-workspace-packages.cjs - Remove duplicate conditions in postinstall.js - Add ES2024 target/lib to tsconfig.extensions.json - Delete obsolete GSD recovery scripts Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
26 lines
1,023 B
JSON
26 lines
1,023 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true,
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"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/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": []
|
|
}
|