mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-21 23:22:27 +02:00
34 lines
910 B
JSON
34 lines
910 B
JSON
{
|
|
"extends": "@tsconfig/recommended",
|
|
"compilerOptions": {
|
|
"target": "ES2021",
|
|
"lib": ["ES2021", "ES2022.Object", "ES2022.Error", "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,
|
|
"jsx": "react-jsx",
|
|
"outDir": "dist"
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "coverage"],
|
|
"includeVersion": true,
|
|
"typedocOptions": {
|
|
"entryPoints": ["src/client.ts"],
|
|
"readme": "none",
|
|
"out": "docs",
|
|
"plugin": ["typedoc-plugin-markdown"],
|
|
"excludePrivate": true,
|
|
"excludeProtected": true,
|
|
"excludeExternals": false
|
|
}
|
|
}
|