mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-15 22:03:48 +00:00
23 lines
678 B
JSON
23 lines
678 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"]
|
|
},
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true
|
|
}
|
|
}
|