mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-10 08:48:29 +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>
37 lines
863 B
JSON
37 lines
863 B
JSON
{
|
|
"exclude": [],
|
|
"include": [
|
|
"remix.env.d.ts",
|
|
"global.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"tailwind.config.js",
|
|
"tailwind.config.js",
|
|
"trigger.config.ts"
|
|
],
|
|
"compilerOptions": {
|
|
"types": ["@remix-run/node", "vite/client"],
|
|
"lib": ["DOM", "DOM.Iterable", "DOM.AsyncIterable", "ES2020"],
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "react-jsx",
|
|
"module": "esnext",
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true,
|
|
"target": "ES2020",
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"strictPropertyInitialization": false,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./app/*"],
|
|
"@/*": ["./*"]
|
|
},
|
|
"noEmit": true
|
|
}
|
|
}
|