sandbox-agent/foundry/tsconfig.base.json
2026-03-13 21:14:31 -07:00

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
}
}