mirror of
https://github.com/n8n-io/n8n.git
synced 2026-07-28 11:35:03 +02:00
15 lines
361 B
JSON
15 lines
361 B
JSON
{
|
|
"extends": ["./tsconfig.json", "@n8n/typescript-config/tsconfig.build.go.json"],
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@test/*": ["./test/shared/*"],
|
|
"@test-integration/*": ["./test/integration/shared/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["test/**", "src/**/__tests__/**"]
|
|
}
|