diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-12-08 06:34:28 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-08 06:34:28 +0100 |
| commit | a6b5d05311f54d085a1e44f4a51717b4c0a4c74b (patch) | |
| tree | eb1ab43a8ec73f311fe4e4401d20df5e0d6d4a7b /cli/tools/init/templates | |
| parent | 44b2b950fd20e59fca1e6dddf522d456d2fd622f (diff) | |
feat(init): Generate deno.json by default (#16389)
Updates `deno init` subcommand to create a `deno.json` when initializing
a new project.
Slightly changes the output, to make it more readable.
Diffstat (limited to 'cli/tools/init/templates')
| -rw-r--r-- | cli/tools/init/templates/deno.json | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tools/init/templates/deno.json b/cli/tools/init/templates/deno.json new file mode 100644 index 000000000..3c5130f1d --- /dev/null +++ b/cli/tools/init/templates/deno.json @@ -0,0 +1,5 @@ +{ + "tasks": { + "dev": "deno run --watch main.ts" + } +} |
