mirror of
https://github.com/browseros-ai/BrowserOS.git
synced 2026-05-18 19:16:22 +00:00
* 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
35 lines
827 B
JSON
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"]
|
|
}
|