Last active
September 17, 2020 01:57
-
-
Save willmendesneto/e5c5eabd322788b30ea47c85afc02d23 to your computer and use it in GitHub Desktop.
VSCode configuration when using TSFMT in your service
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// List of recommended extensions | |
// Please add it inside your `.vscode` folder on the root of your project | |
// E.G. `.vscode/extensions.json` | |
{ | |
"recommendations": [ | |
"dbaeumer.vscode-eslint", | |
"eamodio.gitlens", | |
"editorconfig.editorconfig", | |
"eternalphane.tsfmt-vscode", | |
"ms-vscode.vscode-typescript-tslint-plugin" | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// List of recommended extensions | |
// Please add it inside your `.vscode` folder on the root of your project | |
// E.G. `.vscode/settings.json` | |
{ | |
"search.exclude": { | |
"**/.git": true, | |
"**/node_modules": true, | |
"**/.tmp": true, | |
"**/.DS_Store": true | |
}, | |
"files.watcherExclude": { | |
"**/.git/**": true, | |
"**/node_modules/**": true, | |
"**/tmp/**": true, | |
"**/dist/**": true | |
}, | |
// This will make sure Prettier will not play with your | |
// files, respecting and using tsfmt | |
"prettier.disableLanguages": ["typescript"], | |
"[typescript]": { | |
"editor.formatOnSave": true | |
}, | |
"[yaml]": { | |
"editor.formatOnSave": false | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment