mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-03 10:17:00 +02:00
18 lines
417 B
JSON
18 lines
417 B
JSON
{
|
|
"extends": [
|
|
"@n8n/typescript-config/tsconfig.common.json",
|
|
"@n8n/typescript-config/tsconfig.backend.json"
|
|
],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"src/*": ["./src/*"],
|
|
"src": ["./src"]
|
|
},
|
|
"tsBuildInfoFile": "dist/typecheck.tsbuildinfo",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true
|
|
},
|
|
"include": ["src/**/*.ts", "test/**/*.ts", "integration-tests/**/*.ts"]
|
|
}
|