added vscode extensions
This commit is contained in:
parent
7cde0829be
commit
26e2a50441
316 changed files with 37301 additions and 0 deletions
33
.vscode/extensions/ritwickdey.live-sass-3.0.0/docs/faqs.md
vendored
Normal file
33
.vscode/extensions/ritwickdey.live-sass-3.0.0/docs/faqs.md
vendored
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
|
||||
## FAQ (For Beginners)
|
||||
|
||||
### How to config the settings in my project?
|
||||
|
||||
Create a `.vscode` folder in the root of project. Inside of `.vscode` folder create a json file named `settings.json`.
|
||||
Inside of the `settings.json`, type following key-value pairs. By the way you'll get intelli-sense.
|
||||
|
||||
```json
|
||||
{
|
||||
"liveSassCompile.settings.formats":[
|
||||
{
|
||||
"format": "expanded",
|
||||
"extensionName": ".css",
|
||||
"savePath": "/css"
|
||||
},
|
||||
{
|
||||
"extensionName": ".min.css",
|
||||
"format": "compressed",
|
||||
"savePath": "/dist/css"
|
||||
}
|
||||
],
|
||||
"liveSassCompile.settings.excludeList": [
|
||||
"**/node_modules/**",
|
||||
".vscode/**"
|
||||
],
|
||||
"liveSassCompile.settings.generateMap": true,
|
||||
"liveSassCompile.settings.autoprefix": [
|
||||
"> 1%",
|
||||
"last 2 versions"
|
||||
]
|
||||
}
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue