diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-12-09 23:55:03 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-09 23:55:03 +0100 |
| commit | 6794d9fe5d3d401e6e5795a502f8d1ee63fb796b (patch) | |
| tree | 21f5075009eaadce19432e014c022c64d962060c /cli/tools/init/templates/deno.jsonc | |
| parent | 653aebfa1aa9121070df98ee88474b5f821fb15d (diff) | |
feat(init): Use jsonc for configuration file (#17002)
Generate "deno.jsonc" instead of "deno.json" when running "deno init"
subcommand.
Diffstat (limited to 'cli/tools/init/templates/deno.jsonc')
| -rw-r--r-- | cli/tools/init/templates/deno.jsonc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tools/init/templates/deno.jsonc b/cli/tools/init/templates/deno.jsonc new file mode 100644 index 000000000..3c5130f1d --- /dev/null +++ b/cli/tools/init/templates/deno.jsonc @@ -0,0 +1,5 @@ +{ + "tasks": { + "dev": "deno run --watch main.ts" + } +} |
