Append VSCode settings for watching styles of mobile editors.

pull/278/head
Alexander Yuzhin 2019-12-04 11:33:43 +03:00
parent ad04f01c65
commit 59cd185590
1 changed files with 10 additions and 0 deletions

10
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,10 @@
{
"filewatcher.commands": [
{
"match": "app-(ios|material)\\.less",
"isAsync": true,
"cmd": "lessc --js --no-color '${file}' '${fileDirname}/../css/${fileBasenameNoExt}.css'",
"event": "onFileChange"
}
]
}