-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththundercraft5.github.io.code-workspace
91 lines (91 loc) · 2.13 KB
/
thundercraft5.github.io.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.exclude": {
"**/.git": false,
"**/.svn": false,
"**/.hg": false,
"**/CVS": false,
"**/.DS_Store": false,
"**/Thumbs.db": false,
"**/.classpath": false,
"**/.project": false,
"**/.settings": false,
"**/.factorypath": false,
"**/.vscode": false,
"**/.editorconfig": false,
"**/.history": false,
"**/.gitattributes": false,
"**/.gitignore": false,
"**/eclipse-formatter.xml": false,
"**/LICENSE": false,
"**/phpcs-composer.xml": false,
"**/README.md": false,
"**/tempCodeRunnerFile.*": false,
"**/*.class": false,
"**/.eslintrc.cjs": false,
"**/.metadata": false,
"**/.vs": false,
"**/pom.xml": false,
"**/.gitingnore": false,
"**/.nojekyll": false,
"**/AUTHORS.txt": false,
"**/LICENSE.txt": false,
"**/AssemblyInfo.cs": false,
"**/.apt_generated": false,
"**/.clang-tidy": false,
"**/Cargo.toml": false,
"**/Cargo.lock": false,
".tmp-projections/": false,
"Visual-Studio\\C#\\*/*bin": false,
"Visual-Studio\\C#\\*/obj": false,
"Visual-Studio\\Java\\*/*bin": false,
"Visual-Studio\\Rust\\*/target": false,
"PowerShell\\Modules/PackageManagement": false,
"*.vsconfig": false,
"*.code-workspace": false,
".eslintrc.json": false,
"CppProperties.json": false,
"debug.log": false,
"Overrides": false,
"Cargo.toml": false,
".debuggerDefaults": false,
"**/.debuggerDefaults": false,
"**/.idea": false,
"**/target": false,
"out": false,
"*.pem": false,
"**/package-lock.json": false,
"**/*.key": false,
"**/*.crt": false
},
"explorerExclude.backup": null
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"type": "pwa-node",
"request": "launch",
"name": "Launch Local Server",
"skipFiles": [
"<node_internals>/**"
],
"runtimeExecutable": "nodemon",
"runtimeArgs": [
"./scripts/server.js",
"--experimental-modules",
"--experimental-import-meta-resolve",
"--experimental-json-modules",
"--experimental-repl-await",
"--no-warnings",
"--trace-deprecation",
]
}
]
}
}