Skip to content

Instantly share code, notes, and snippets.

@willmendesneto
Last active September 17, 2020 01:57
Show Gist options
  • Save willmendesneto/e5c5eabd322788b30ea47c85afc02d23 to your computer and use it in GitHub Desktop.
Save willmendesneto/e5c5eabd322788b30ea47c85afc02d23 to your computer and use it in GitHub Desktop.
VSCode configuration when using TSFMT in your service
// 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"
]
}
// 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