mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 09:36:44 +00:00
24 lines
668 B
JSON
24 lines
668 B
JSON
{
|
|
"extends": "@n8n/typescript-config/tsconfig.common.json",
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"types": ["node", "jest"],
|
|
"baseUrl": "src",
|
|
"tsBuildInfoFile": "dist/typecheck.tsbuildinfo",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
|
|
// remove all options below this line
|
|
"strict": false,
|
|
"strictPropertyInitialization": false
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"references": [
|
|
{ "path": "../../core/tsconfig.build.json" },
|
|
{ "path": "../../workflow/tsconfig.build.esm.json" },
|
|
{ "path": "../config/tsconfig.build.json" },
|
|
{ "path": "../di/tsconfig.build.json" },
|
|
{ "path": "../permissions/tsconfig.build.json" }
|
|
]
|
|
}
|