10925: minor: Simplify `.vscodeignore` r=lnicola a=lnicola

The quadruple negation we used to have here was quite confusing:

```gitignore
**
!out
out/**
!out/src
```

Let's ignore everything and cherry-pick what we want to include.

~~And also include the extension sourcemap, just in case someone wants to debug the extension.~~

Co-authored-by: Laurențiu Nicola <lnicola@dend.ro>
This commit is contained in:
bors[bot] 2021-12-04 12:17:29 +00:00 committed by GitHub
commit 71cbc79b0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,15 +1,13 @@
**
!language-configuration.json
!out
out/**
!out/src
!node_modules/d3/dist/d3.min.js
!node_modules/@hpcc-js/wasm/dist/index.min.js
!node_modules/@hpcc-js/wasm/dist/graphvizlib.wasm
!node_modules/d3-graphviz/build/d3-graphviz.min.js
!package.json
!package-lock.json
!ra_syntax_tree.tmGrammar.json
!icon.png
!README.md
!language-configuration.json
!LICENSE
!node_modules/@hpcc-js/wasm/dist/graphvizlib.wasm
!node_modules/@hpcc-js/wasm/dist/index.min.js
!node_modules/d3-graphviz/build/d3-graphviz.min.js
!node_modules/d3/dist/d3.min.js
!out/main.js
!package-lock.json
!package.json
!ra_syntax_tree.tmGrammar.json
!README.md