1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-10-06 17:47:46 +03:00
n8n/packages/@n8n/chat/tsconfig.json
Alex Grozav aca38a8f9c
feat: Simplify n8n/chat build process (no-changelog) (#9952)
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
2024-07-05 15:44:19 +03:00

24 lines
562 B
JSON

{
"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"]
}