Vous pouvez configurer statement_timeout
dans le client :
const { Client } = require('pg')
const client = new Client({
statement_timeout: 10000
})
ou dans la piscine :
const { Pool } = require('pg')
const pool = new Pool({
statement_timeout: 10000
})