ca73d9683f
- implement `ClaudeCodeProvider` using `claude -p` with plain text output - register `claudecode` as a new provider enum option in package.json - add `enumDescriptions` for all provider choices - update API key description to note it is not required for Claude Code - bump version to 1.1.5
17 lines
342 B
JSON
17 lines
342 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "commonjs",
|
|
"lib": ["ES2020"],
|
|
"types": ["node"],
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|