Files
BrowserOS/tsconfig.json
Nikhil 6f30dc748e fix: improve graph execution (#246)
* fix: [remove] debug logs

* feat: add stateful act() support

* fix: [TMP] always load tmp/current_code

* feat: interactive snapshot structured content and adding that api in browseros service for sdk

* fix: verify pass interactive elements

* feat: refactored agent sdk with act having verify options

* fix: verify uses simplified snapshot

* fix: remove testing code, lint fixes

* fix: remove debug logs
2026-01-19 16:58:22 -08:00

35 lines
827 B
JSON

{
"compilerOptions": {
"target": "es2023",
"lib": [
"ES2023",
"DOM",
"ES2024.Promise",
"ESNext.Iterator",
"ESNext.Collection",
"ESNext.Disposable"
],
"module": "esnext",
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"incremental": true,
"allowJs": true,
"useUnknownInCatchVariables": false,
"composite": true,
"declaration": true,
"declarationMap": true
},
"references": [
{ "path": "./apps/server" },
{ "path": "./apps/controller-ext" }
],
"include": [],
"exclude": ["node_modules", "dist", "build", "*.config.js"]
}