mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 06:04:43 +00:00
* Restore foundry onboarding stack * Consolidate foundry rename * Create foundry tasks without prompts * Rename Foundry handoffs to tasks
25 lines
855 B
JSON
25 lines
855 B
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/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
|
|
}
|
|
}
|