Answers for "runnig console.log on vs code terminal"

0

runnig console.log on vs code terminal

{
  "version": "2.0.0",
  "tasks": [
    {
      "label": "Show in console",
      "type": "shell",
      "osx": {
        "command": "/usr/local/bin/node ${file}"
      },
      "linux": {
        "command": "/usr/bin/node ${file}"
      },
      "windows": {
        "command": "C:\\Program Files\\nodejs\\node.exe ${file}"
      },
      "group": {
        "kind": "build",
        "isDefault": true
      }
    }
  ]
}
Posted by: Guest on August-04-2020

Code answers related to "runnig console.log on vs code terminal"

Code answers related to "Javascript"

Browse Popular Code Answers by Language