1. 12 9月, 2019 1 次提交
  2. 21 8月, 2019 1 次提交
  3. 06 8月, 2019 1 次提交
  4. 30 7月, 2019 1 次提交
  5. 11 7月, 2019 1 次提交
  6. 27 6月, 2019 1 次提交
  7. 25 6月, 2019 1 次提交
  8. 21 5月, 2019 1 次提交
  9. 30 1月, 2019 1 次提交
    • 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
  10. 25 1月, 2019 1 次提交
  11. 22 1月, 2019 1 次提交
  12. 08 12月, 2018 1 次提交
  13. 13 11月, 2018 1 次提交
    • M
      Don't explicitly add folder name to task labels · fd824ee5
      Matt Bierner 提交于
      Fixes #60315
      
      Don't add workspace folder name to task labels as this messes up build task detection.
      
      This change currently causes a regression when you have two folders with the same folder name (but different paths) in a workspace
      fd824ee5
  14. 25 9月, 2018 1 次提交
  15. 21 9月, 2018 1 次提交
    • M
      Don't treat cancellation as an error · 97c753fa
      Matt Bierner 提交于
      **Problem**
      In the ts server communication, canceling a request currently throws an exception. This is wrong because  cancellation is not an error. It also means that we need to wrap every server call in a generic try catch to handle cancellation. There are no checks in place to distinquish a cancellation from a rea
      97c753fa
  16. 20 9月, 2018 1 次提交
  17. 21 7月, 2018 1 次提交
  18. 13 7月, 2018 1 次提交
  19. 06 6月, 2018 1 次提交
    • M
      Split toPath and normalizedPath · fe114f8f
      Matt Bierner 提交于
      Break up the concept of normalizing a path and trying to get the on disk path of a resource. Needed for handling case insensitivity
      fe114f8f
  20. 05 6月, 2018 1 次提交
  21. 24 3月, 2018 1 次提交
  22. 12 3月, 2018 1 次提交
  23. 12 12月, 2017 1 次提交
  24. 01 12月, 2017 2 次提交
  25. 28 11月, 2017 1 次提交
  26. 07 11月, 2017 2 次提交
  27. 14 10月, 2017 1 次提交
  28. 12 10月, 2017 2 次提交
  29. 23 9月, 2017 1 次提交
  30. 29 8月, 2017 1 次提交
  31. 19 8月, 2017 2 次提交
  32. 03 8月, 2017 1 次提交
  33. 02 8月, 2017 2 次提交
  34. 31 7月, 2017 1 次提交
  35. 25 7月, 2017 1 次提交