pricing4ts
Version:
 Pricing4TS is a TypeScript-based toolkit designed to enhance the server-side functionality of a pricing-driven SaaS by enabling the seamless integration of pricing plans into the application logic. T
34 lines • 1.3 kB
JSON
{
"version": "0.2.0",
"configurations": [
{
"type": "pwa-node", // Usar el depurador de Node.js en VSCode para Deno
"request": "launch",
"name": "Deno: Run Task",
"runtimeExecutable": "deno",
"runtimeArgs": [
"task",
"test", // Cambia esto por el nombre de tu task
"--inspect-brk", // Opción para iniciar en modo debug
],
"cwd": "${workspaceFolder}", // Asegúrate de que sea el directorio raíz del proyecto
"attachSimplePort": 9229, // Puerto para la depuración remota
"outputCapture": "std" // Captura de la salida estándar
},
{
"type": "node",
"request": "launch",
"name": "Test pricing parsing",
"runtimeExecutable": "ts-node",
"args": [
"${workspaceFolder}/scripts/parse-pricing-to-new-file.ts",
"./tests/resources/pricing/real/github/2024.yml"
],
"port": 9229,
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"skipFiles": ["<node_internals>/**"],
// "outFiles": ["${workspaceFolder}/dist/**/*.js"]
}
]
}