mirror of
https://github.com/jina-ai/node-DeepResearch.git
synced 2025-12-25 22:16:49 +08:00
* feat: add npm publish workflow Co-Authored-By: Han Xiao <han.xiao@jina.ai> * feat: add CLI interface Co-Authored-By: Han Xiao <han.xiao@jina.ai> * fix: add moduleResolution and resolveJsonModule to tsconfig Co-Authored-By: Han Xiao <han.xiao@jina.ai> * feat: add OPENAI_API_KEY to workflow files Co-Authored-By: Han Xiao <han.xiao@jina.ai> --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Han Xiao <han.xiao@jina.ai>
15 lines
312 B
JSON
15 lines
312 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "commonjs",
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "node"
|
|
}
|
|
}
|