如何设置sublime编译默认使用 'use_strict' 严格模式

{
  "cmd": ["node", "$file"],
  "file_regex": "^[ ]*File "(...*?)", line ([0-9]*)",
  "selector": "source.js",
  "shell": true,
  "encoding": "utf-8",
  "windows":
    {
        "shell_cmd": "taskkill /F /IM node.exe & node --use_strict $file"
    },
    "linux":
    {
        "shell_cmd": "killall node; /usr/bin/env node --use_strict $file"
    },
    "osx":
    {
        "shell_cmd": "killall node; /usr/bin/env node --use_strict $file"
    }
}
原文地址:https://www.cnblogs.com/Again/p/6951463.html