I'm trying to create a native addon for Node.js and when I include
#include <napi.h>
The Intelli Sense of VS Code says that it cannot detect where node_api.h is located (it's included by napi.h).
node-gyp build works well and it compiles. But I do not understand where is that header in the system and where node-gyp gets it from? I need to add the path to the Intelli Sense options and to better understand the process of building in general.
I'm playing with this code example.