mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-21 15:12:26 +02:00
* Create JS/TS SDK reference docs. * Remove index.mts from typedoc entry point.
36 lines
852 B
JSON
36 lines
852 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",
|
|
"src/schema.ts",
|
|
"src/types.mts"
|
|
],
|
|
"readme": "none",
|
|
"out": "docs",
|
|
"plugin": [
|
|
"typedoc-plugin-markdown"
|
|
]
|
|
}
|
|
}
|