If I'm using `targetHierarchy.default` and I use `withJs` even though I'm not targeting js, will tha...
e
If I'm using
targetHierarchy.default
and I use
withJs
even though I'm not targeting js, will that cause it to get targeted?
j
My understanding is the
with*
declarations only apply to targets that you explicitly declare. So similarly, if you use
withNative
and then only declare the
linuxX64()
target, it doesn't include the other native targets unless you add them.
👍 1