Skip to content

Commit 63c5581

Browse files
authored
Merge pull request #297 from vallemar/fix-ios-connection
Fix iOS connection to loopback address (127.0.0.1) and sourceMapPathOverrides for all file extensions
2 parents 474c22c + a1187d6 commit 63c5581

10 files changed

+3042
-2040
lines changed

.vscode/tasks.json

+21-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,27 @@
11
{
2-
"version": "0.1.0",
2+
"version": "2.0.0",
33
"windows": {
44
"command": ".\\node_modules\\.bin\\tsc"
55
},
66
"command": "./node_modules/.bin/tsc",
7-
"isShellCommand": true,
8-
"args": ["-p", "./src"],
9-
"problemMatcher": "$tsc"
7+
"args": [
8+
"-p",
9+
"./src"
10+
],
11+
"problemMatcher": "$tsc",
12+
"tasks": [
13+
{
14+
"label": "./node_modules/.bin/tsc",
15+
"type": "shell",
16+
"args": [
17+
"-p",
18+
"./src"
19+
],
20+
"problemMatcher": "$tsc",
21+
"group": {
22+
"_id": "build",
23+
"isDefault": false
24+
}
25+
}
26+
]
1027
}

0 commit comments

Comments
 (0)