We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60eecce commit ccddfedCopy full SHA for ccddfed
.vscode/extensions.json
@@ -0,0 +1,7 @@
1
+{
2
+ "recommendations": [
3
+ "orta.vscode-jest",
4
+ "esbenp.prettier-vscode",
5
+ "dbaeumer.vscode-eslint"
6
+ ]
7
+}
.vscode/launch.json
@@ -0,0 +1,17 @@
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "type": "node",
+ "request": "launch",
+ "name": "Jest Current File",
8
+ "runtimeExecutable": "sh",
9
+ "program": "node_modules/.bin/jest",
10
+ "args": [
11
+ "${relativeFile}"
12
+ ],
13
+ "console": "integratedTerminal",
14
+ "internalConsoleOptions": "openOnFirstSessionStart",
15
+ }
16
17
0 commit comments