forked from simwrapper/simwrapper
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsimwrapper.code-workspace
More file actions
45 lines (44 loc) · 1.16 KB
/
simwrapper.code-workspace
File metadata and controls
45 lines (44 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"folders": [
{
"name": "SimWrapper",
"path": "."
},
{
"name": "WASM",
"path": "./wasm/"
}
],
"settings": {
// Rust-specific settings
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer",
"editor.formatOnSave": true
},
"rust-analyzer.cargo.allFeatures": true,
"rust-analyzer.procMacro.enable": true,
// Node-specific settings
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"javascript.validate.enable": true,
"typescript.validate.enable": true,
"editor.formatOnSave": true,
"go.toolsEnvVars": {
"GOOS": "js",
"GOARCH": "wasm",
"GOROOT": "/Users/billy/Library/Caches/tinygo/goroot-ba4a9a47e6136854fcbeeeddca387447b4cd9b238edb51ad8d17a915d1a97776",
"GOFLAGS": "-tags=tinygo.wasm,tinygo,purego,osusergo,math_big_pure_go,gc.precise,scheduler.asyncify,serial.none"
}
},
"extensions": {
"recommendations": [
"rust-lang.rust-analyzer",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint"
]
}
}