add build and vscode to ignore

This commit is contained in:
Derrick Gremillion 2025-03-24 18:31:21 -06:00
parent 375b3599ca
commit 5690bd3806
2 changed files with 35 additions and 1 deletions

2
.gitignore vendored
View File

@ -1,3 +1,5 @@
*.blend1 *.blend1
khafile.js khafile.js
build_PuzzlePocalypse build_PuzzlePocalypse
build
.vscode\*

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

@ -0,0 +1,32 @@
{
"configurations": [
{
"name": "Kha: HTML5",
"request": "launch",
"type": "chrome",
"cwd": "${workspaceFolder}/build/debug-html5",
"runtimeExecutable": "${command:kha.findKhaElectron}",
"runtimeArgs": [
"--no-sandbox",
"--force-device-scale-factor=1",
"."
],
"outFiles": [
"${workspaceFolder}/build/debug-html5/*.js"
],
"preLaunchTask": "Kha: Build for Debug HTML5",
"internalConsoleOptions": "openOnSessionStart",
"skipFiles": [
"<node_internals>/**"
]
},
{
"type": "krom",
"request": "launch",
"name": "Kha: Krom",
"preLaunchTask": "Kha: Build for Krom",
"internalConsoleOptions": "openOnSessionStart"
}
],
"compounds": []
}