n8n/packages/@n8n/db/tsconfig.json
Matsu d7d2071bdd
test: Migrate @n8n/db from Jest to Vitest (no-changelog) (#31560)
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-04 06:17:59 +00:00

22 lines
640 B
JSON

{
"extends": "@n8n/typescript-config/tsconfig.common.json",
"compilerOptions": {
"types": ["node", "vitest/globals"],
"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" }
]
}