mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-21 07:02:25 +02:00
47 lines
943 B
JSON
47 lines
943 B
JSON
{
|
|
"extends": "@tsconfig/recommended",
|
|
"compilerOptions": {
|
|
"target": "ES2021",
|
|
"lib": [
|
|
"ES2021",
|
|
"ES2022.Object",
|
|
"DOM"
|
|
],
|
|
"module": "NodeNext",
|
|
"moduleResolution": "nodenext",
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"useDefineForClassFields": true,
|
|
"strictPropertyInitialization": false,
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"outDir": "dist"
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"coverage"
|
|
],
|
|
"includeVersion": true,
|
|
"typedocOptions": {
|
|
"entryPoints": [
|
|
"src/client.mts"
|
|
],
|
|
"readme": "none",
|
|
"out": "docs",
|
|
"plugin": [
|
|
"typedoc-plugin-markdown"
|
|
],
|
|
"excludePrivate": true,
|
|
"excludeProtected": true,
|
|
"excludeExternals": false
|
|
}
|
|
}
|