Files
langgraphjs/examples/sql-agent/tsconfig.json
T
Pokey Rule 18abe1e813 feat(examples): Add sql_agent example (#1750)
Co-authored-by: Hunter Lovell <40191806+hntrl@users.noreply.github.com>
Co-authored-by: Christian Bromann <git@bromann.dev>
2025-11-03 14:29:35 -08:00

16 lines
428 B
JSON

{
"extends": "@tsconfig/recommended",
"compilerOptions": {
"outDir": "dist",
"lib": ["ES2021", "ES2022.Object", "ES2022.Error", "DOM"],
"target": "ES2021",
"module": "nodenext",
"allowSyntheticDefaultImports": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUnusedParameters": true,
"useDefineForClassFields": true,
"strictPropertyInitialization": false
}
}