Files
BrowserOS/packages/browseros-agent/tsconfig.json
Dani Akash 290ee91a8b Add 'packages/browseros-agent/' from commit '90bd4be3008285bf3825aad3702aff98f872671a'
git-subtree-dir: packages/browseros-agent
git-subtree-mainline: 8f148d0918
git-subtree-split: 90bd4be300
2026-03-13 21:22:09 +05:30

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