1. 04 4月, 2019 1 次提交
  2. 03 4月, 2019 1 次提交
  3. 23 3月, 2019 2 次提交
  4. 22 3月, 2019 3 次提交
  5. 16 3月, 2019 1 次提交
  6. 15 3月, 2019 1 次提交
  7. 12 3月, 2019 7 次提交
  8. 07 3月, 2019 3 次提交
  9. 06 3月, 2019 1 次提交
  10. 02 3月, 2019 3 次提交
  11. 22 2月, 2019 1 次提交
  12. 21 2月, 2019 2 次提交
  13. 15 2月, 2019 2 次提交
  14. 14 2月, 2019 2 次提交
    • M
      Remove jsDocCompletion setting · b819c766
      Matt Bierner 提交于
      This has been renamed to `javascript.suggest.completeJSDocs` and `typescript.suggest.completeJSDocs`
      b819c766
    • M
      Add preference to disable shorthand renaming · b4522997
      Matt Bierner 提交于
      Fixes #68029
      
      Use the `typescript.preferences.renameShorthandProperties` and `javascript.preferences.renameShorthandProperties` to disable shorthand property renames. Default to enabling renames
      b4522997
  15. 12 2月, 2019 1 次提交
  16. 08 2月, 2019 1 次提交
  17. 31 1月, 2019 2 次提交
  18. 30 1月, 2019 2 次提交
    • T
      Use jsonc parser to parse a config file · 84424c84
      Thai Pangsakulyanont 提交于
      This fixes a problem where the `typescript` VSCode task runs `tsc` with `-p`
      when it should run `-b` when `tsconfig.json` has the `"references"` property.
      
      ```js
      {
        "extends": "./tsconfig.app.json",
        // meow
        "references": [{ "path": "./tsconfig.lib.json" }]
      }
      ```
      
      This bug happens because while `tsconfig.json` file allows comment, the
      parsing logic here uses vanilla `JSON.parse` which cannot parse comments.
      
      This commit fixes it by using `jsonc.parse` instead.
      84424c84
    • G
      Fix jSDocCompletion deprecation message · 6f1cb199
      Greg Van Liew 提交于
      6f1cb199
  19. 29 1月, 2019 4 次提交