-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathncm-project.code-workspace
57 lines (57 loc) · 1.47 KB
/
ncm-project.code-workspace
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
46
47
48
49
50
51
52
53
54
55
56
57
{
"folders": [
{
"path": "."
}
],
"settings": {
"git.autoRepositoryDetection": false,
"terminal.integrated.profiles.osx": {
"x86 macos": {
"path": "/usr/bin/arch",
"args": [
"-arch",
"x86_64",
"${env:SHELL}",
"-i",
"-c",
"export VSCODE_PROFILE='x86 shell';source .vscode/check_env; exec ${env:SHELL}"
]
},
"arm64 macos": {
"path": "/usr/bin/arch",
"args": [
"-arch",
"arm64",
"${env:SHELL}",
"-i",
"-c",
"export VSCODE_PROFILE='arm64 shell'; source .vscode/check_env; exec ${env:SHELL}"
]
},
"generic macos": {
"path": "${env:SHELL}",
"args": [
"-i",
"-c",
"export VSCODE_PROFILE='generic bash'; source .vscode/check_env; exec ${env:SHELL}"
]
}
},
"terminal.integrated.profiles.linux": {
"generic linux": {
"path": "${env:SHELL}",
"args": [
"-i",
"-c",
"export VSCODE_PROFILE='generic bash'; source .vscode/check_env; exec ${env:SHELL}"
]
}
},
// this line will force use of the selected profile
// it's only needed when running pre-v14 versions of NodeJS
// to force Intel386 on Apple Silicon processors
"terminal.integrated.defaultProfile.osx": "x86 macos",
"terminal.integrated.defaultProfile.linux": "generic linux"
}
}