Skip to content

Commit 22bf437

Browse files
authored
style: added codespace container customization (#50)
1 parent dff1353 commit 22bf437

File tree

4 files changed

+35
-1
lines changed

4 files changed

+35
-1
lines changed

.devcontainer/devcontainer.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"image": "mcr.microsoft.com/devcontainers/universal:2",
3+
"features": {
4+
"ghcr.io/devcontainers-contrib/features/jest:2": {}
5+
},
6+
"customizations": {
7+
"vscode": {
8+
"settings": {
9+
"jest.autoRun": "off"
10+
},
11+
"extensions": [
12+
"eamodio.gitlens",
13+
"ms-vscode.vscode-typescript-next",
14+
"Orta.vscode-jest",
15+
"dbaeumer.vscode-eslint"
16+
]
17+
}
18+
},
19+
"postCreateCommand": "npm install"
20+
}

.vscode/extensions.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"recommendations": [
3+
"ms-vscode.vscode-typescript-next",
4+
"Orta.vscode-jest",
5+
"dbaeumer.vscode-eslint"
6+
]
7+
}

.vscode/launch.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,13 @@
88
"internalConsoleOptions": "neverOpen",
99
"cwd": "${workspaceFolder}",
1010
"runtimeExecutable": "npm",
11-
"args": ["run", "test", "--", "--runInBand", "--watchAll=false"]
11+
"args": [
12+
"run",
13+
"test",
14+
"--",
15+
"--runInBand",
16+
"--watchAll=false"
17+
]
1218
}
1319
]
1420
}

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
},
66
"search.exclude": {
77
"swiftorg": true,
8+
"lib": true,
89
"dist": true
910
}
1011
}

0 commit comments

Comments
 (0)