From aec5772d2f41331b961ed75f55d7e768731d8edc Mon Sep 17 00:00:00 2001 From: Yash Kulshrestha Date: Sun, 6 Oct 2019 10:38:33 -0700 Subject: [PATCH] added the editor tab width for people who have their editors configured to be 2 spaces --- .vscode/settings.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index d695c1f4c..a42d383ec 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,8 +2,11 @@ "files.exclude": { "**/*.d.ts": true, "**/*.js.map": true, - "**/*.js": { "when": "$(basename).ts" } + "**/*.js": { + "when": "$(basename).ts" + } }, "prettier.ignorePath": ".prettierignore", - "typescript.tsdk": "node_modules/typescript/lib" + "typescript.tsdk": "node_modules/typescript/lib", + "editor.tabSize": 4 }