UNPKG

kasha

Version:

Pre-render your Single-Page Application.

41 lines (40 loc) 1.16 kB
{ // 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": [ { "type": "node", "request": "launch", "name": "Server", "program": "${workspaceFolder}/bin/kasha", "args": ["server", "--config=config.dev.js"], "outputCapture": "std" }, { "type": "node", "request": "launch", "name": "Worker", "program": "${workspaceFolder}/bin/kasha", "args": ["worker", "--config=config.dev.js", "--no-headless"], "outputCapture": "std" }, { "type": "node", "request": "launch", "name": "Async Worker", "program": "${workspaceFolder}/bin/kasha", "args": ["worker", "--config=config.dev.js", "--async", "--no-headless"], "outputCapture": "std" }, { "type": "node", "request": "launch", "name": "install", "program": "${workspaceFolder}/bin/kasha", "args": ["install", "--config=config.dev.js"], "outputCapture": "std" } ] }