Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/udibo_react_app/.vscode/tasks.json

A React Framework for Deno that makes it easy to create highly interactive apps that have server side rendering with file based routing for both your UI and API.
Latest
File
{ "version": "2.0.0", "tasks": [ { "label": "deno task: build", "type": "deno", "problemMatcher": [ "$deno" ], "command": "task", "args": [ "build" ] }, { "label": "deno task: run", "type": "deno", "problemMatcher": [ "$deno" ], "command": "task", "args": [ "run" ] }, { "label": "deno task: test", "type": "deno", "problemMatcher": [ "$deno" ], "command": "task", "args": [ "test" ] }, { "label": "deno task: test-watch", "type": "deno", "problemMatcher": [ "$deno" ], "command": "task", "args": [ "test-watch" ] }, { "label": "deno task: check", "type": "deno", "problemMatcher": [ "$deno" ], "command": "task", "args": [ "check" ] } ]}