mirror of
https://github.com/browseros-ai/BrowserOS.git
synced 2026-05-18 19:16:22 +00:00
* refactor(server): remove obsolete controller extension backend * fix: address review feedback for PR #610
32 lines
778 B
JSON
32 lines
778 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" }],
|
|
"include": [],
|
|
"exclude": ["node_modules", "dist", "build", "*.config.js"]
|
|
}
|