mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
aca38a8f9c
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
24 lines
562 B
JSON
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"]
|
|
}
|