mirror of
https://github.com/langchain-ai/langgraphjs-studio-starter.git
synced 2026-07-01 18:25:52 -04:00
30 lines
606 B
JSON
30 lines
606 B
JSON
{
|
|
"extends": "@tsconfig/recommended",
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"lib": [
|
|
"ES2021",
|
|
"ES2022.Object",
|
|
"DOM"
|
|
],
|
|
"target": "ES2021",
|
|
"module": "nodenext",
|
|
"sourceMap": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": "./src",
|
|
"declaration": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedParameters": true,
|
|
"useDefineForClassFields": true,
|
|
"strictPropertyInitialization": false
|
|
},
|
|
"exclude": [
|
|
"node_modules/",
|
|
"dist/",
|
|
"tests/"
|
|
],
|
|
"include": [
|
|
"./src"
|
|
]
|
|
} |