Revision 093fd39f9311415d74f889ff9526d8243c914dae authored by Kristiyan Kostadinov on 14 December 2021, 13:35:40 UTC, committed by Alex Rickabaugh on 14 December 2021, 21:14:02 UTC
Cleans up some of the temporary workarounds that were necessary in order to land support for TypeScript 4.5 since they're no longer necessary.

PR Close #44477
1 parent d640fa7
Raw File
recommended-settings.json
{
  // Format js and ts files on save with `clang-format.executable`
  // If `clang-format.executable` is not being used, these two settings should be removed otherwise it will break existing formatting.
  // You can instead run `yarn gulp format` to manually format your code.
  "[javascript]": {
    "editor.formatOnSave": true,
  },
  "[typescript]": {
    "editor.formatOnSave": true,
  },
  // Please install https://marketplace.visualstudio.com/items?itemName=xaver.clang-format to take advantage of `clang-format` in VSCode.
  // (See https://clang.llvm.org/docs/ClangFormat.html for more info `clang-format`.)
  "clang-format.executable": "${workspaceRoot}/node_modules/.bin/clang-format",
  // Exclude third party modules and build artifacts from the editor watchers/searches.
  "files.watcherExclude": {
    "**/.git/objects/**": true,
    "**/.git/subtree-cache/**": true,
    "**/node_modules/**": true,
    "**/bazel-out/**": true,
    "**/dist/**": true,
    "**/aio/src/generated/**": true,
  },
  "search.exclude": {
    "**/node_modules": true,
    "**/bower_components": true,
    "**/bazel-out": true,
    "**/dist": true,
    "**/aio/src/generated": true,
    ".history": true,
  },
  "git.ignoreLimitWarning": true,
}
back to top