mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 09:36:44 +00:00
15 lines
416 B
JSON
15 lines
416 B
JSON
{
|
|
"extends": "@n8n/typescript-config/tsconfig.common.json",
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"strictPropertyInitialization": false,
|
|
"types": ["node", "jest"],
|
|
"baseUrl": "src",
|
|
"tsBuildInfoFile": "dist/typecheck.tsbuildinfo"
|
|
},
|
|
"include": ["src/**/*.ts", "test/**/*.ts"],
|
|
"references": [{ "path": "../di/tsconfig.build.json" }]
|
|
}
|