tabby/clients/tabby-agent/tsconfig.json
Meng Zhang 8dfc23a8dc
docs: change grammar fixing command's text copy (#2849)
* docs: change grammar fixing command's text copy

* Update AgentConfig.ts

* Update AgentConfig.ts

* update

* update

* update

* update

* update

* update

* update

* update

* [autofix.ci] apply automated fixes

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2024-08-13 04:28:36 +00:00

24 lines
581 B
JSON
Vendored

{
"compilerOptions": {
"module": "commonjs",
"lib": ["esnext", "webworker"],
"target": "es2020",
"sourceMap": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"strict": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"allowSyntheticDefaultImports": true
},
"include": ["./src"],
"ts-node": {
"files": true,
"require": ["./register-loader.js"]
}
}