Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-04-26 | feat(cli): flatten deno.json configuaration (#17799) | scarf | |
2023-01-25 | feat: embed import map in the config file (#17478) | Bartek Iwańczuk | |
This commit changes handling of config file to enable specifying "imports" and "scopes" objects effectively making the configuration file an import map. "imports" and "scopes" take precedence over "importMap" configuration, but have lower priority than "--importmap" CLI flag. Co-authored-by: David Sherret <dsherret@users.noreply.github.com> Co-authored-by: David Sherret <dsherret@gmail.com> | |||
2023-01-25 | feat(fmt): make semi-colon option a boolean (#17527) | David Sherret | |
2023-01-24 | feat(fmt): add ability to configure semicolons (#17292) | Bartek Iwańczuk | |
Allows to change behavior of `deno fmt` to use "ASI" setting for semicolons instead of always prefering them, this is done by "--options-semi=asi" flag or `"semi": "asi"` setting in the config file. | |||
2022-12-22 | fix: add missing verb in description (#17163) | Geert-Jan Zwiers | |
2022-12-19 | fix(cli): allow for specifying `noErrorTruncation` compiler option (#17127) | Kamil Ogórek | |
Fixes https://github.com/denoland/deno/issues/16568 | |||
2022-12-10 | feat(cli): support deno bench in the config file (#16608) | Geert-Jan Zwiers | |
This PR adds the ability to set `include/exclude` fields for `deno bench` in the configuration file. | |||
2022-12-08 | feat(cli): support configuring the lock file in the config file (#16781) | Roj | |
This allows the user to completely opt out from the lock file or rename it without having to use `--no-lock` and/or `--lock` in all commands. ## Don’t Use Lock File ```json { "lock": false } ``` ## Use Lock File With a Different Name ```json { "lock": "deno2.lock" } ``` The CLI args `--no-lock` and `--lock` will always override what is in the config file. Co-authored-by: David Sherret <dsherret@users.noreply.github.com> | |||
2022-10-25 | feat(lint): add a report lint config setting (#16045) | Brenley Dueck | |
Builds off this PR to add a "report" setting to deno.json which can be "pretty", "compact", or "json". | |||
2022-07-19 | chore(cli): update config file schema to include test config (#15246) | Roj | |
2022-03-17 | fix(config-file): fix config-file.v1.json schema to allow colons in the task ↵ | David Sherret | |
name (#14013) | |||
2022-03-10 | feat: "deno task" subcommand (#13725) | Bartek Iwańczuk | |
Co-authored-by: David Sherret <dsherret@gmail.com> | |||
2022-02-28 | chore: Add "noImplicitOverride" to config-file.v1.json (#13780) | Elisée Maurer | |
2022-02-23 | feat: allow specification of import map in config file (#13739) | Kitson Kelly | |
Closes: #12800 | |||
2021-12-14 | feat(lsp): improve registry completion suggestions (#13023) | Kitson Kelly | |
Resolves #10051 | |||
2021-11-09 | feat(cli): support React 17 JSX transforms (#12631) | Kitson Kelly | |
Closes #8440 | |||
2021-09-20 | fix(config-schema): correct default value of "lib" (#12145) | Eyal Shalev | |
Changed it from `"deno.window"` to `["deno.window"]` | |||
2021-09-14 | chore: update URL for schemas (#12070) | Bartek Iwańczuk | |
2021-09-14 | chore: add JSON schema for configuration file (#12062) | Bartek Iwańczuk | |
2021-07-22 | fix(cli): info now displays type reference deps (#11478) | Kitson Kelly | |
Fixes #11476 |