ts-importer icon indicating copy to clipboard operation
ts-importer copied to clipboard

`tsimporter.filesToExclude` not working?

Open unional opened this issue 1 year ago • 0 comments

I have this in the settings.json:

{
  "tsimporter.filesToExclude": [
    "./build/**",
    "./cjs/**",
    "./esm/**"
  ],
}

I have also tried:

{
  "tsimporter.filesToExclude": [
    "**/build/**",
    "**/cjs/**",
    "**/esm/**"
  ],
}

but the does not exclude the extra paths as in:

image

unional avatar Apr 13 '23 22:04 unional