source: js/human_3d_alignment/.vscode/launch.json @ 881

Last change on this file since 881 was 881, checked in by Maciej Komosinski, 5 years ago

Initial, prototype version of a javascript app to test how humans align two 3D structures

File size: 675 bytes
Line 
1{
2    // Use IntelliSense to learn about possible attributes.
3    // Hover to view descriptions of existing attributes.
4    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5    "version": "0.2.0",
6    "configurations": [
7        {
8            "type": "chrome",
9            "request": "launch",
10            "name": "Launch Chrome",
11            "url": "http://localhost:3000",
12            "webRoot": "${workspaceFolder}",
13            "sourceMaps": true,
14            "sourceMapPathOverrides": {
15                "src\\*": "${workspaceFolder}\\src\\*",
16                "external\\*": "${workspaceFolder}\\external\\*"
17            },
18        }
19    ]
20}
Note: See TracBrowser for help on using the repository browser.