This repository has been archived on 2026-09-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
open-brainy/tsconfig.cli.json

19 lines
345 B
JSON
Raw Permalink Normal View History

{
"extends": "./tsconfig.json",
"compilerOptions": {
"skipLibCheck": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"strict": false
},
"include": [
"src/cli/**/*",
"src/mcp/conversationTools.ts",
"src/conversation/**/*"
],
"exclude": [
"node_modules",
"dist",
"**/*.test.ts"
]
}