Live Sass CompilerでCSSファイルの出力先を変更する

よく忘れるのでメモ。
以下は一つ上の階層にCSS出力をする設定。

①Live Sass Compilerの「機能拡張の設定」(歯車アイコン)をクリック

②「Live Sass Compile > Settings: Formats」の「setting.jsonで編集」をクリック

"savePath": null,となっている箇所を書き換え、保存する

{
  "format": "expanded",
  "extensionName": ".css",
  "savePath": "~/../",
  "savePathReplacementPairs": null
}