-
Notifications
You must be signed in to change notification settings - Fork 8
/
project.code-workspace
120 lines (120 loc) · 2.95 KB
/
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"editor.wordWrap": "on",
"editor.formatOnSave": true,
"files.autoSave": "off",
"files.associations": {
"*.cu": "cpp",
"Matchfile": "ruby",
"gl.h": "c",
"glut.h": "c",
"freeglut_std.h": "c",
"array": "cpp",
"string": "cpp",
"string_view": "cpp",
"ranges": "cpp",
"stdexcept": "cpp",
"atomic": "cpp",
"hash_map": "cpp",
"bit": "cpp",
"*.tcc": "cpp",
"cctype": "cpp",
"clocale": "cpp",
"cmath": "cpp",
"compare": "cpp",
"concepts": "cpp",
"cstdarg": "cpp",
"cstddef": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cwchar": "cpp",
"cwctype": "cpp",
"deque": "cpp",
"list": "cpp",
"unordered_map": "cpp",
"vector": "cpp",
"exception": "cpp",
"algorithm": "cpp",
"functional": "cpp",
"iterator": "cpp",
"memory": "cpp",
"memory_resource": "cpp",
"numeric": "cpp",
"optional": "cpp",
"random": "cpp",
"system_error": "cpp",
"tuple": "cpp",
"type_traits": "cpp",
"utility": "cpp",
"fstream": "cpp",
"initializer_list": "cpp",
"iosfwd": "cpp",
"istream": "cpp",
"limits": "cpp",
"new": "cpp",
"ostream": "cpp",
"sstream": "cpp",
"streambuf": "cpp",
"cinttypes": "cpp",
"typeinfo": "cpp",
"iostream": "cpp",
"stdio.h": "c"
},
"files.exclude": {
"packages/cython/feedback/**.c": false,
"packages/cython/feedback/**.so": false
},
"python.analysis.extraPaths": ["./packages/cython"],
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[python]": {
"editor.defaultFormatter": "ms-python.python"
},
"python.formatting.provider": "black",
"eslint.workingDirectories": ["./studio", "./packages/three.js"],
"[c]": {
"editor.defaultFormatter": "ms-vscode.cpptools"
},
"[hlsl]": {
"editor.defaultFormatter": "slevesque.shader"
}
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"stkb.rewrap",
"GitHub.vscode-pull-request-github",
"eamodio.gitlens",
"ms-python.python",
"ms-python.vscode-pylance",
"toba.vsfire"
]
},
"launch": {
"configurations": [
{
"name": "Launch Frontend",
"request": "launch",
"type": "pwa-chrome",
"url": "http://localhost:3000/",
"webRoot": "${workspaceFolder}/studio",
"sourceMapPathOverrides": {
"webpack:///./~/*": "${workspaceFolder}/node_modules/*",
"webpack://?:*/*": "${workspaceFolder}/*"
},
// Name of debug profile, created in Chrome browser
"userDataDir": "Profile 1"
}
],
"compounds": []
}
}