mirror of
https://github.com/n8n-io/n8n.git
synced 2026-07-28 03:24:59 +02:00
18 lines
383 B
JSON
18 lines
383 B
JSON
{
|
|
"extends": [
|
|
"@n8n/typescript-config/tsconfig.common.go.json",
|
|
"@n8n/typescript-config/tsconfig.backend.go.json"
|
|
],
|
|
"compilerOptions": {
|
|
"target": "es2023",
|
|
"lib": ["es2023"],
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"types": ["node", "vitest/globals", "vite/client"]
|
|
},
|
|
"include": ["src/**/*.ts"]
|
|
}
|