This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/node_modules/typescript/lib/_tsc.js b/node_modules/typescript/lib/_tsc.js | |
| index 612a1f7..53fa32a 100644 | |
| --- a/node_modules/typescript/lib/_tsc.js | |
| +++ b/node_modules/typescript/lib/_tsc.js | |
| @@ -7563,6 +7563,7 @@ var Diagnostics = { | |
| Compiles_the_current_project_with_additional_settings: diag(6929, 3 /* Message */, "Compiles_the_current_project_with_additional_settings_6929", "Compiles the current project, with additional settings."), | |
| true_for_ES2022_and_above_including_ESNext: diag(6930, 3 /* Message */, "true_for_ES2022_and_above_including_ESNext_6930", "`true` for ES2022 and above, including ESNext."), | |
| List_of_file_name_suffixes_to_search_when_resolving_a_module: diag(6931, 1 /* Error */, "List_of_file_name_suffixes_to_search_when_resolving_a_module_6931", "List of file name suffixes to search when resolving a module."), | |
| + Import_JSON_files_as_const_assertions: diag(6933, 3 /* Message */, "Import_JSON_files_as_const_assertions_6933", "Import JSON files as const assertions."), | |
| Variable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Adds some useful git aliases | |
| echo "Adding aliases" | |
| # Lists changes (i.e. commit messages) | |
| # "- " prefixed before each line after any whitespace for easily making a markdown list | |
| # You can optionally provide from and to tags. | |
| # `git ls-changes` will list changes from the last tag to HEAD | |
| # `git ls-changes tag_a` will list changes from tag_a to HEAD |