n8n/packages/@n8n/task-runner/tsconfig.json
Matsu 2e683ffc0f
chore(core): Migrate task-runner from Jest to Vitest (no-changelog) (#31481)
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-01 16:16:18 +00:00

17 lines
370 B
JSON

{
"extends": [
"@n8n/typescript-config/tsconfig.common.json",
"@n8n/typescript-config/tsconfig.backend.json"
],
"compilerOptions": {
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"types": ["node", "vitest/globals"],
"paths": {
"@/*": ["./src/*"]
},
"tsBuildInfoFile": "dist/typecheck.tsbuildinfo"
},
"include": ["src/**/*.ts"]
}