microsoft/vscode-generator-code

generated settings.json refers to output as out instead of dist

jonahgraham opened this issue · 0 comments

If I run yo code the settings.json file refers to out for files.exclude and search.exclude when I believe it should be dist (both the setting and the comment on the same line)

Here is what I ran:

$ npx --package yo --package generator-code -- yo code

     _-----_     ╭──────────────────────────╮
    |       |    │   Welcome to the Visual  │
    |--(o)--|    │   Studio Code Extension  │
   `---------´   │        generator!        │
    ( _´U`_ )    ╰──────────────────────────╯
    /___A___\   /
     |  ~  |     
   __'.___.'__   
 ´   `  |° ´ Y ` 

? What type of extension do you want to create? New Web Extension (TypeScript)
? What's the name of your extension? extensionname
? What's the identifier of your extension? extensionname
? What's the description of your extension? 
? Initialize a git repository? Yes
? Which bundler to use? esbuild
? Which package manager to use? yarn

I think this is where the value comes from:

"files.exclude": {
"out": false // set this to true to hide the "out" folder with the compiled JS files
},
"search.exclude": {
"out": true // set this to false to include "out" folder in search results