Files
2024-05-09 19:35:12 +00:00

50 lines
1006 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Run devel",
"type": "node",
"request": "launch",
"outputCapture": "std",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/src/lib/index.js",
"args": [
"--devel"
]
},
{
"name": "Run devel fa6",
"type": "node",
"request": "launch",
"outputCapture": "std",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/src/lib/index.js",
"args": [
"--devel",
"--fonts",
"fa6"
]
},
{
"name": "Build examples",
"type": "node",
"request": "launch",
"outputCapture": "std",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/src/lib/index.js",
"args": [
"--devel",
"--examples"
]
}
]
}