This can be done with pure CSS now.
Simply add
scroll-behavior: smooth;
...to the HTML element's CSS definition.
Example:
html {
scroll-behavior: smooth;
}
More details here:
https://gomakethings.com/how-to-animate-scrolling-to-anchor-links-with-one-line-of-css/