mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
2dc37f411e
Closes #22786. TLDR; ```jsonc { "tasks": { // Some comment // // describing what the task does "dev": "deno run -A --watch main.ts" } } ``` ```bash deno task ``` ![Screenshot 2024-03-27 at 1 43 49 PM](https://github.com/denoland/deno/assets/17734409/7a14da8c-8e63-45ba-9bfb-590d250b56a9)
12 lines
189 B
Text
12 lines
189 B
Text
{
|
|
"tasks": {
|
|
// this task has documentation
|
|
//
|
|
// in the form of comments
|
|
"lint": "deno lint",
|
|
/*
|
|
* block comments are fine too
|
|
*/
|
|
"fmt": "deno fmt"
|
|
}
|
|
}
|