mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-11 16:58:28 +00:00
* Feat: v2 * feat: add chat functionality * First cut: integrations * Feat: add conversation API * Enhance conversation handling and memory management * Feat: added conversation --------- Co-authored-by: Manoj K <saimanoj58@gmail.com>
39 lines
1005 B
JSON
39 lines
1005 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"include": ["./src/**/*.ts", "tsup.config.ts"],
|
|
"compilerOptions": {
|
|
"baseUrl": "src",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"strictNullChecks": false,
|
|
"preserveConstEnums": true,
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"useUnknownInCatchVariables": false,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
|
|
"removeComments": true,
|
|
"module": "commonjs",
|
|
"target": "ES2022",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"lib": ["DOM", "DOM.Iterable"],
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"stripInternal": true
|
|
},
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|