mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
20 lines
568 B
JSON
20 lines
568 B
JSON
{
|
|
"extends": "@n8n/typescript-config/tsconfig.common.json",
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"types": ["node", "jest"],
|
|
"baseUrl": "src",
|
|
"tsBuildInfoFile": "dist/typecheck.tsbuildinfo",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"references": [
|
|
{ "path": "../../workflow/tsconfig.build.cjs.json" },
|
|
{ "path": "../config/tsconfig.build.json" },
|
|
{ "path": "../constants/tsconfig.build.json" },
|
|
{ "path": "../decorators/tsconfig.build.json" },
|
|
{ "path": "../di/tsconfig.build.json" }
|
|
]
|
|
}
|