diff --git a/.gitignore b/.gitignore index 0036c11..e84b435 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,16 @@ +# Modules node_modules/ + +#C overage coverage/ + +# Build bundle dist/ + +# Misc .tap/ .DS_Store -.nyc_output \ No newline at end of file +.nyc_output + +# Editor +.vscode \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 525af40..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "type": "node", - "request": "launch", - "name": "Launch Program", - "skipFiles": [ - "/**" - ], - "program": "${workspaceFolder}/sample.js" - }, - { - "type": "node", - "request": "launch", - "name": "Jest: current file", - //"env": { "NODE_ENV": "test" }, - "program": "${workspaceFolder}/node_modules/.bin/jest", - "args": ["${fileBasenameNoExtension}", "--config", "jest.config.js"], - "console": "integratedTerminal", - "disableOptimisticBPs": true, - "windows": { - "program": "${workspaceFolder}/node_modules/jest/bin/jest" - } - } - ] -} \ No newline at end of file