mirror of
https://github.com/n8n-io/n8n.git
synced 2026-08-30 18:01:23 +08:00
9b2b78f8d5
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
21 lines
607 B
JSON
21 lines
607 B
JSON
{
|
|
"extends": "@n8n/typescript-config/tsconfig.common.go.json",
|
|
"compilerOptions": {
|
|
"types": ["node", "vitest/globals", "vite/client"],
|
|
"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" }
|
|
]
|
|
}
|