build: add CLI compilation config
- Added tsconfig.cli.json for separate CLI compilation - Modified package.json to compile CLI files - Fixed dist/brainyData.js WAL import issue
This commit is contained in:
parent
bc5aa37dd0
commit
d2ea0de1f0
3 changed files with 23 additions and 2 deletions
19
tsconfig.cli.json
Normal file
19
tsconfig.cli.json
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"extends": "./tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"skipLibCheck": true,
|
||||
"noUnusedLocals": false,
|
||||
"noUnusedParameters": false,
|
||||
"strict": false
|
||||
},
|
||||
"include": [
|
||||
"src/cli/commands/conversation.ts",
|
||||
"src/mcp/conversationTools.ts",
|
||||
"src/conversation/**/*"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"dist",
|
||||
"**/*.test.ts"
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue