mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-15 14:22:43 +00:00
20 lines
530 B
JSON
20 lines
530 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"strict": false,
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": false,
|
|
"strictNullChecks": false,
|
|
"strictFunctionTypes": false,
|
|
"strictBindCallApply": false,
|
|
"strictPropertyInitialization": false,
|
|
"noUncheckedIndexedAccess": false,
|
|
"exactOptionalPropertyTypes": false,
|
|
"ignoreDeprecations": "6.0",
|
|
"composite": true,
|
|
"declaration": true,
|
|
"outDir": "build/electron-types"
|
|
},
|
|
"include": ["electron"],
|
|
"exclude": ["src"]
|
|
}
|