Skip to content

Commit 587114f

Browse files
authored
chore: add recommended extensions and settings (#200)
1 parent c4751f5 commit 587114f

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

.vscode/extensions.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
3+
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
4+
5+
// List of extensions which should be recommended for users of this workspace.
6+
"recommendations": ["firsttris.vscode-jest-runner", "orta.vscode-jest"],
7+
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
8+
"unwantedRecommendations": []
9+
}

.vscode/settings.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"jestrunner.jestCommand": "npm test --",
3+
"jestrunner.debugOptions": {
4+
"runtimeExecutable": "node",
5+
"runtimeArgs": [
6+
"--experimental-vm-modules",
7+
"node_modules/jest/bin/jest.js",
8+
"--coverage"
9+
]
10+
}
11+
}

0 commit comments

Comments
 (0)