mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-12 16:10:30 +02:00
19 lines
461 B
JSON
19 lines
461 B
JSON
{
|
|
"extends": [
|
|
"@n8n/typescript-config/tsconfig.common.json",
|
|
"@n8n/typescript-config/tsconfig.backend.json"
|
|
],
|
|
"compilerOptions": {
|
|
"target": "es2023",
|
|
"lib": ["es2023"],
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"tsBuildInfoFile": "dist/typecheck.tsbuildinfo",
|
|
"types": ["node", "jest"]
|
|
},
|
|
"include": ["src/**/*.ts", "test/**/*.ts", "evaluations/**/*.ts", "scripts/**/*.ts"]
|
|
}
|