I found two ways to do this, which work for me, using empty catch or timeout.
const x = async value => await console.log(value);
class Boss {
constructor() {
// Option 1: use empty catch
x(1).catch(_ => {});
// Option 2: use timeout
setTimeout(() => x(2), 0);
}
}