This commit is contained in:
2024-08-07 09:45:15 +02:00
commit 9d7b1e71ce
88 changed files with 21647 additions and 0 deletions

7
.vscode/extensions.json vendored Normal file
View File

@@ -0,0 +1,7 @@
{
"recommendations": [
"esbenp.prettier-vscode",
"blockceptionltd.blockceptionvscodeminecraftbedrockdevelopmentextension",
"mojang-studios.minecraft-debugger"
]
}

16
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,16 @@
{
"version": "0.3.0",
"configurations": [
{
"type": "minecraft-js",
"request": "attach",
"name": "Debug with Minecraft",
"mode": "listen",
"preLaunchTask": "build",
"targetModuleUuid": "868bf88f-78d9-4109-b1b2-308645e367bd",
"sourceMapRoot": "${workspaceFolder}/build/_Reeks2Missie6Debug",
"generatedSourceRoot": "${workspaceFolder}/build/behavior_packs/scripts",
"port": 19144
}
]
}

39
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,39 @@
{
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"git.ignoreLimitWarning": true,
"editor.formatOnSave": true,
"search.exclude": {
"**/.git": true,
"**/node_modules": true,
"**/build": true
},
"files.exclude": {
"**/.DS_Store": true,
"**/.git": true,
"**/build": false,
"**/node_modules": true
},
"cSpell.words": ["gametest", "gametests", "minecart", "shulker", "zoglin"],
"editor.tabSize": 2,
"workbench.colorCustomizations": {
"activityBar.background": "#243b1e",
"titleBar.activeBackground": "#1f3d21",
"titleBar.activeForeground": "#F5FCEB"
},
"emeraldwalk.runonsave": {
"commands": [{ "cmd": "gulp", "isAsync": true, "match": "\\.ts$" }]
},
"BC-MC.Education.Enable": true
}

12
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,12 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"dependsOrder": "sequence",
"dependsOn": [
"gulp: default"
]
}
]
}