Skip to content

Commit

Permalink
Merge pull request #297 from vallemar/fix-ios-connection
Browse files Browse the repository at this point in the history
Fix iOS connection to loopback address (127.0.0.1) and sourceMapPathOverrides for all file extensions
  • Loading branch information
vallemar authored Feb 12, 2024
2 parents 474c22c + a1187d6 commit 63c5581
Show file tree
Hide file tree
Showing 10 changed files with 3,042 additions and 2,040 deletions.
25 changes: 21 additions & 4 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,27 @@
{
"version": "0.1.0",
"version": "2.0.0",
"windows": {
"command": ".\\node_modules\\.bin\\tsc"
},
"command": "./node_modules/.bin/tsc",
"isShellCommand": true,
"args": ["-p", "./src"],
"problemMatcher": "$tsc"
"args": [
"-p",
"./src"
],
"problemMatcher": "$tsc",
"tasks": [
{
"label": "./node_modules/.bin/tsc",
"type": "shell",
"args": [
"-p",
"./src"
],
"problemMatcher": "$tsc",
"group": {
"_id": "build",
"isDefault": false
}
}
]
}
Loading

0 comments on commit 63c5581

Please sign in to comment.