Skip to content

Instantly share code, notes, and snippets.

@diego-augusto
Created March 23, 2020 23:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diego-augusto/1d9646c62c3034db0d84b3e491e67979 to your computer and use it in GitHub Desktop.
Save diego-augusto/1d9646c62c3034db0d84b3e491e67979 to your computer and use it in GitHub Desktop.
.vsconfig
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "App",
"program": "${workspaceFolder}\\index.js",
"env": {
"NODE_ENV": "development",
"PORT": "8000",
"SECRET": "44ace43ee9b5bd2d00ddfd4f723c6548",
"NODE_OPTIONS": "--max-old-space-size=4096"
}
},
{
"type": "node",
"request": "launch",
"name": "Jest Current File",
"program": "${workspaceFolder}/node_modules/.bin/jest",
"args": [
"${fileBasenameNoExtension}",
"--detectOpenHandles",
"--forceExit",
"--testTimeout=60000"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true,
"windows": {
"program": "${workspaceFolder}\\node_modules\\jest\\bin\\jest",
},
"env": {
"NODE_ENV": "test",
"SECRET": "meu-segredo-secreto",
}
}
]
}
{
"git.confirmSync": false,
"git.autofetch": true,
"editor.rulers": [
80
],
"workbench.colorCustomizations": {
"editorRuler.foreground": "#ff0000"
},
"editor.fontSize": 24,
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\cmd.exe",
"javascript.updateImportsOnFileMove.enabled": "always",
"window.zoomLevel": 0,
"workbench.colorTheme": "Dracula",
"workbench.sideBar.location": "right",
"editor.codeActionsOnSave": {
"source.fixAll": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment