Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #1

Merged
merged 15 commits into from
Nov 18, 2022
Prev Previous commit
Next Next commit
Add WASM build support to VS Code
  • Loading branch information
colemancda committed Nov 18, 2022
commit 4b27a6a3b34824f8e8fe121dcb90ad7d0ffc984d
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ DerivedData/
!default.mode2v3
*.perspectivev3
!default.perspectivev3
.DS_Store

## Obj-C/Swift specific
*.hmap
Expand All @@ -44,9 +45,6 @@ Package.resolved
.swiftpm
.build/

# VS Code
.vscode

# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
Expand Down
7 changes: 7 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"swift.autoGenerateLaunchConfigurations": false,
"swift.buildArguments": [
"--triple",
"wasm32-unknown-wasi"
]
}