microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
0.6.3

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/extension/appcenter/lib/codepush-node-sdk/.vscode/tasks.json

29lines · modepreview

{
  // See https://go.microsoft.com/fwlink/?LinkId=733558
  // for the documentation about the tasks.json format
  "version": "2.0.0",
  "tasks": [
    {
      "label": "build-tests",
      "command": "${workspaceRoot}/node_modules/typescript/bin/tsc",
      "type": "shell",
      "group": "build",
      "problemMatcher": [
        "$tsc"
      ],
      "args": [
        "-p",
        "tsconfig-test.json"
      ]
    },
    {
      "label": "build",
      "type": "gulp",
      "task": "build",
      "group": {
        "kind": "build",
        "isDefault": true
      }
    }
  ]
}