I am struggling with installing includePath in a larger project. Let's say I have a folder structure like:
/BaseComponent/public /BaseComponent/include /BaseComponent/source /SubComponent1/public /SubComponent1/include /SubComponent1/source /SubComponent1/SubSubComponent/public /SubComponent1/SubSubComponent/include /SubComponent1/SubSubComponent/source /SubComponent2/public /SubComponent2/include /SubComponent2/source
I tried to make such a configuration:
"includePath": [ ... "${workspaceRoot}", "${workspaceRoot}/*/include", "${workspaceRoot}/*/public" ],
But that didn't seem to work. Is there a way to have only the entire title inside workspaceRoot? Something like "include the entire subfolder"?
OR another way to determine the path that depends on the project?
source share