sandbox-agent/foundry/tsconfig.base.json
2026-03-12 11:20:46 -07:00

28 lines
1 KiB
JSON

{
"compilerOptions": {
"baseUrl": ".",
"target": "ES2023",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2023", "DOM"],
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"declaration": true,
"sourceMap": true,
"paths": {
"sandbox-agent": ["../sdks/typescript/src/index.ts"],
"@sandbox-agent/cli-shared": ["../sdks/cli-shared/src/index.ts"],
"acp-http-client": ["../sdks/acp-http-client/src/index.ts"],
"@sandbox-agent/foundry-client": ["packages/client/src/index.ts"],
"@sandbox-agent/foundry-shared": ["packages/shared/src/index.ts"],
"@sandbox-agent/foundry-backend": ["packages/backend/src/index.ts"],
"@sandbox-agent/foundry-frontend-errors": ["packages/frontend-errors/src/index.ts"],
"@sandbox-agent/foundry-frontend-errors/*": ["packages/frontend-errors/src/*"]
},
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true
}
}