mirror of
https://github.com/langchain-ai/langgraphjs.git
synced 2026-07-23 09:35:22 -04:00
30 lines
825 B
JSON
30 lines
825 B
JSON
{
|
|
"extends": "@tsconfig/recommended",
|
|
"compilerOptions": {
|
|
"target": "ES2021",
|
|
"lib": ["ES2021", "ES2022.Object", "ES2022.Error", "DOM", "DOM.Iterable"],
|
|
"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": ["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"
|
|
]
|
|
}
|