mirror of
https://github.com/langchain-ai/langgraph-supervisor-js.git
synced 2026-07-01 16:21:20 -04:00
23 lines
629 B
JSON
23 lines
629 B
JSON
{
|
|
"extends": "@tsconfig/recommended",
|
|
"compilerOptions": {
|
|
"outDir": "../dist",
|
|
"rootDir": "./src",
|
|
"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
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "docs"]
|
|
} |