Files
n8n/packages/cli/tsconfig.build.json
2026-07-23 16:09:54 +00:00

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__/**"]
}