mirror of
https://github.com/langchain-ai/net-mocks.git
synced 2026-06-30 20:28:02 -04:00
33 lines
676 B
JSON
33 lines
676 B
JSON
{
|
|
"extends": "@tsconfig/recommended",
|
|
"compilerOptions": {
|
|
"target": "ES2021",
|
|
"lib": [
|
|
"ES2021",
|
|
"ES2022.Object",
|
|
"DOM",
|
|
"DOM.Iterable",
|
|
],
|
|
"outDir": "dist",
|
|
"module": "ES2022",
|
|
"moduleResolution": "bundler",
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"useDefineForClassFields": true,
|
|
"strictPropertyInitialization": false,
|
|
"allowJs": true,
|
|
"strict": true
|
|
},
|
|
"include": [
|
|
"src/*",
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"__tests__",
|
|
"node_modules"
|
|
]
|
|
} |