Issue:
We are setting both onlyFiles and exxpandDirectories options to falsehere as they are set to true by default in globby and fast-glob.
In VSCode the autocomplete currently shows with @default: true text so I really assumed that it is really set to true before looking at source code.
This PR changes the @default flag to false so it's inline with this rollup-plugin-copy options.
Not sure if there is a better way of changing intellisense @default from 'true' to 'false'. I've copied the type declaraitions from both globby and fast-glob and just changed the default values.
Issue: We are setting both
onlyFiles
andexxpandDirectories
options tofalse
here as they are set totrue
by default in globby and fast-glob.In VSCode the autocomplete currently shows with
@default: true
text so I really assumed that it is really set to true before looking at source code.This PR changes the
@default
flag tofalse
so it's inline with this rollup-plugin-copy options.Not sure if there is a better way of changing intellisense
@default
from 'true' to 'false'. I've copied the type declaraitions from both globby and fast-glob and just changed the default values.