mirror of
https://github.com/langchain-ai/langgraphjs.git
synced 2026-07-23 09:35:22 -04:00
33 lines
801 B
JSON
33 lines
801 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,
|
|
"outDir": "dist"
|
|
},
|
|
"include": [
|
|
"libs/*/src/**/*",
|
|
"libs/*/*.d.ts",
|
|
"libs/langgraph/*.d.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/dist/",
|
|
"environment_tests",
|
|
"examples/web_browsing/labeling.ts",
|
|
"langgraph/dist/checkpoint/sqlite.js"
|
|
]
|
|
}
|