Skip to content

Commit a7af41d

Browse files
committed
wip
1 parent f93fbe7 commit a7af41d

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// See https://aka.ms/devcontainer for more information.
2+
{
3+
"name": "PSBlogger DevContainer",
4+
"image": "mcr.microsoft.com/devcontainers/typescript-node:latest",
5+
"features": {
6+
"ghcr.io/devcontainers/features/powershell:1": {},
7+
"ghcr.io/devcontainers-community/npm-features/typescript:1": {},
8+
"ghcr.io/rocker-org/devcontainer-features/pandoc:1": {}
9+
},
10+
"postCreateCommand": "pwsh -Command 'Install-Module -Name Pester -Force -Scope AllUsers; Install-Module -Name powershell-yaml -Force -Scope AllUsers'",
11+
"customizations": {
12+
"vscode": {
13+
"extensions": [
14+
"ms-vscode.powershell",
15+
"ms-vscode.vscode-json",
16+
"redhat.vscode-yaml",
17+
"ms-vscode.test-adapter-converter",
18+
"hbenl.vscode-test-explorer",
19+
"pspester.pester-test"
20+
],
21+
"settings": {
22+
"terminal.integrated.defaultProfile.linux": "pwsh"
23+
}
24+
}
25+
}
26+
}

0 commit comments

Comments
 (0)