4230-hw-1/.vscode/launch.json

34 lines
852 B
JSON
Raw Normal View History

2022-06-20 05:11:32 +00:00
{
"version": "0.2.0",
"configurations": [
2022-06-23 20:50:00 +00:00
2022-06-20 05:11:32 +00:00
{
2022-06-23 20:50:00 +00:00
"name": "ClickedPoints",
2022-06-20 05:11:32 +00:00
"type": "firefox",
"request": "launch",
"reAttach": true,
"file": "${workspaceFolder}/ClickedPoints/ClickedPoints.html"
2022-06-23 20:50:00 +00:00
},
{
"name": "ChaosGame",
"type": "firefox",
"request": "launch",
"reAttach": true,
"file": "${workspaceFolder}/ChaosGame/ChaosGame.html"
},
{
"name": "Pendulum",
"type": "firefox",
"request": "launch",
"reAttach": true,
"file": "${workspaceFolder}/Pendulum/Pendulum.html"
},
{
"name": "RotatingCube",
"type": "firefox",
"request": "launch",
"reAttach": true,
"file": "${workspaceFolder}/RotatingCube/RotatingCube.html"
2022-06-20 05:11:32 +00:00
}
]
}