Zet - How do you get type hints for webpack?

How do you get type hints for webpack?

You can install @types/webpack

npm install @types/webpack

and then put this before your configuration:

/** @type {import("@types/webpack").Configuration} */

#webpack