diff options
| -rw-r--r-- | .vscode/extensions.json | 6 | ||||
| -rw-r--r-- | .vscode/settings.json | 7 |
2 files changed, 12 insertions, 1 deletions
diff --git a/.vscode/extensions.json b/.vscode/extensions.json index fbb6cfec..17fab0c0 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,3 +1,7 @@ { - "recommendations": ["editorconfig.editorconfig", "esbenp.prettier-vscode"] + "recommendations": [ + "dbaeumer.vscode-eslint", + "editorconfig.editorconfig", + "esbenp.prettier-vscode" + ] } diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..014dbf07 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,7 @@ +{ + // Enable eslint validation for js and ts files + "eslint.validate": ["javascript", "typescript"], + + // Always use the `package.json`'s `typescript` + "typescript.tsdk": "node_modules/typescript/lib" +} |
