mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 01:26:44 +00:00
26 lines
672 B
JSON
26 lines
672 B
JSON
{
|
|
"extends": "@n8n/typescript-config/tsconfig.common.json",
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"baseUrl": "src",
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"allowJs": true,
|
|
"importHelpers": true,
|
|
"incremental": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"types": ["vitest/globals"],
|
|
"paths": {
|
|
"@n8n/chat/*": ["./*"],
|
|
"@n8n/design-system*": ["../../design-system/src*"]
|
|
},
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
|
|
// TODO: remove all options below this line
|
|
"useUnknownInCatchVariables": false
|
|
},
|
|
"include": ["**/*.ts", "**/*.vue"]
|
|
}
|