How to make 1 year timeout – node

im making a bot in node and i wanted to make a timeout with the lenght of 365 days, and node doesn’t allow me to do it, how can i do it?

Current Code:

setTimeout(() => {
 talkedRecently.delete(message.author.id);
}, 31536000000);

Output:

(node:21788) TimeoutOverflowWarning: 31536000000 does not fit into a 32-bit signed integer.

Thanks in advance!