Skip to main content
Module

x/fae/.vscode/tasks.json

A functional module for Deno inspired from Ramda.
Latest
File
{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "test", "type": "shell", "command": "deno test" }, { "label": "dec", "type": "shell", "command": "deno run -A --unstable declarations.ts", "isBackground": true }, { "label": "prettify", "type": "shell", "command": "prettier -w specs/*.ts && prettier -w *.ts", "isBackground": true }, { "label": "debug _test.ts", "type": "shell", "command": "deno run --inspect-brk -A _test1.ts", "isBackground": true, "problemMatcher": { "background": { "activeOnStart": true, "beginsPattern": "Debugger listening" } } } ]}