mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
0bd55a684f
Finish removal of aio directory as it is no longer used or relied upon. PR Close #56496
24 lines
587 B
JSON
24 lines
587 B
JSON
{
|
|
"[javascript]": {
|
|
"editor.formatOnSave": true,
|
|
},
|
|
"[typescript]": {
|
|
"editor.formatOnSave": true,
|
|
},
|
|
// 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,
|
|
},
|
|
"search.exclude": {
|
|
"**/node_modules": true,
|
|
"**/bower_components": true,
|
|
"**/bazel-out": true,
|
|
"**/dist": true,
|
|
".history": true,
|
|
},
|
|
"git.ignoreLimitWarning": true,
|
|
} |