Files
BrowserOS/packages/browseros-agent/apps/agent/tsconfig.json
Dani Akash d965698905 fix: biome & tsc setup across repo (#493)
* fix: biome lint issues

* fix: code quality workflow

* fix: all lint issues

* chore: test lefthook pre-commit hook

* chore: test lefthook with agent file

* chore: revert test comment from lefthook verification

* feat: setup tsgo for typechecking agent

* fix: typecheck cli command

* fix: early return to prevent errors
2026-03-19 18:18:24 +05:30

18 lines
338 B
JSON

{
"extends": "./.wxt/tsconfig.json",
"compilerOptions": {
"types": ["chrome", "bun"],
"allowImportingTsExtensions": true,
"jsx": "react-jsx",
"paths": {
"@/*": ["./*"]
},
"plugins": [
{
"name": "@0no-co/graphqlsp",
"schema": "./generated/graphql/schema.graphql"
}
]
}
}