UNPKG

567 BJSONView Raw
1{
2 // See http://go.microsoft.com/fwlink/?LinkId=733558
3 // for the documentation about the tasks.json format
4 "version": "0.1.0",
5 "command": "node",
6 "isShellCommand": true,
7 "args": [
8 "lib/bin/egret.js"
9 ],
10 "suppressTaskName": true,
11 "showOutput": "silent",
12
13 "tasks": [
14 {
15 "taskName": "create android project",
16 "args": [
17 "native",
18 "create",
19 "../nesttest"
20 ],
21 "problemMatcher": "$tsc"
22 },
23 {
24 "taskName": "deploy android project",
25 "args": [
26 "native",
27 "deploy",
28 "../nesttest"
29 ],
30 "problemMatcher": "$tsc"
31 }
32 ]
33}
\No newline at end of file