build: make vscode work with PnP (#2444)

* Make vscode work with PnP

* Add vscode extension recommendations

* Add newlines to the end of generated manifests
This commit is contained in:
ylemkimon
2020-08-31 17:38:48 +09:00
committed by GitHub
parent 010b267dd6
commit ca00e01434
12 changed files with 135 additions and 2 deletions

7
.vscode/extensions.json vendored Normal file
View File

@@ -0,0 +1,7 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"flowtype.flow-for-vscode",
"stylelint.vscode-stylelint"
]
}

View File

@@ -1,3 +1,6 @@
{
"javascript.validate.enable": false
"javascript.validate.enable": false,
"eslint.nodePath": ".yarn/sdks",
"stylelint.stylelintPath": ".yarn/sdks/stylelint/lib/index.js",
"flow.pathToFlow": "${workspaceFolder}/.yarn/sdks/flow-bin/cli.js"
}