mirror of
https://github.com/langchain-ai/deepagentsjs.git
synced 2026-07-18 16:04:44 -04:00
321ecf3193
* internal: migrate to libs * format * update * format * codespell * release process * format * update deps * no need of npm tokens * fix lock file * type strictness * no need for withLangGraph * format * fix * remove withLanggraph * add changeset
34 lines
780 B
JSON
34 lines
780 B
JSON
{
|
|
"extends": "@tsconfig/recommended/tsconfig.json",
|
|
"files": [],
|
|
"compilerOptions": {
|
|
"target": "ES2021",
|
|
"lib": ["ES2023", "DOM"],
|
|
"module": "NodeNext",
|
|
"moduleResolution": "nodenext",
|
|
"esModuleInterop": true,
|
|
"noImplicitReturns": true,
|
|
"declaration": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"useDefineForClassFields": true,
|
|
"strictPropertyInitialization": false,
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"strictFunctionTypes": false,
|
|
"types": ["node"],
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"coverage",
|
|
"examples",
|
|
"libs",
|
|
"sandbox-workspace",
|
|
"eslint.config.js"
|
|
]
|
|
}
|