refactor: Move @n8n/chat package to frontend/@n8n (no-changelog) (#13425)

This commit is contained in:
Alex Grozav
2025-02-24 21:19:51 +02:00
committed by GitHub
parent 06572efad3
commit 37d4b00e3f
80 changed files with 289 additions and 323 deletions

View File

@@ -0,0 +1,23 @@
{
"extends": "../../../../tsconfig.json",
"compilerOptions": {
"rootDir": "src",
"outDir": "dist",
"baseUrl": "src",
"target": "esnext",
"module": "esnext",
"allowJs": true,
"importHelpers": true,
"incremental": false,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"types": ["vitest/globals"],
"paths": {
"@n8n/chat/*": ["./*"]
},
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
// TODO: remove all options below this line
"useUnknownInCatchVariables": false
},
"include": ["**/*.ts", "**/*.vue"]
}