mirror of
https://github.com/TabbyML/tabby
synced 2024-11-22 17:41:54 +00:00
8dfc23a8dc
* 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>
24 lines
581 B
JSON
Vendored
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"]
|
|
}
|
|
}
|