How do i disable Node’s/npm Intellisense on VSCode for certain workspaces?

Learning programming/coding (in this case Javascript) at school, wanted to do a small little project for myself. I installed Nodejs & npm and made a little script.

The problem I’m having now, is that I’m getting auto-complete options for Nodejs imports, even for (school)projects I don’t want nodejs to kick in.

So my question is: is there a way to disable these autocomplete options for projects where I’m not planning on using Nodejs/npm libraries?

For example: i write “console”, VSCode gives me the option to add “const Console = require(“console”).
autocomplete when writing “console”

Another example: i write “cons”, VSCode gives me way more autocomplete options for other imports(/requires) that I don’t care about right now…
autocomplete when writing “cons”