UNPKG

create-roblox-ts-script

Version:

CLI tool for creating Roblox scripts using TypeScript.

32 lines 747 B
{ "version": "0.2.0", "configurations": [ { "name": "Build", "type": "node", "request": "launch", "cwd": "${workspaceFolder}", "runtimeExecutable": "npm", "runtimeArgs": ["run", "build"], "console": "integratedTerminal" }, { "name": "Dev", "type": "node", "request": "launch", "cwd": "${workspaceFolder}", "runtimeExecutable": "npm", "runtimeArgs": ["run", "dev"], "console": "integratedTerminal" }, { "name": "Dev (Sync)", "type": "node", "request": "launch", "cwd": "${workspaceFolder}", "runtimeExecutable": "npm", "runtimeArgs": ["run", "dev-sync"], "console": "integratedTerminal" } ] }