mirror of
https://github.com/denoland/deno.git
synced 2025-03-04 09:57:11 -05:00

Closes #22786. TLDR; ```jsonc { "tasks": { // Some comment // // describing what the task does "dev": "deno run -A --watch main.ts" } } ``` ```bash deno task ``` 
12 lines
189 B
JSON
12 lines
189 B
JSON
{
|
|
"tasks": {
|
|
// this task has documentation
|
|
//
|
|
// in the form of comments
|
|
"lint": "deno lint",
|
|
/*
|
|
* block comments are fine too
|
|
*/
|
|
"fmt": "deno fmt"
|
|
}
|
|
}
|