Você pode configurar
statement_timeout
no cliente:const { Client } = require('pg')
const client = new Client({
statement_timeout: 10000
})
ou na piscina:
const { Pool } = require('pg')
const pool = new Pool({
statement_timeout: 10000
})