Skip to content

Commit 14f4b4b

Browse files
committed
Actioning #6
1 parent 1b33b73 commit 14f4b4b

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed

.devcontainer/devcontainer.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "Debian",
3+
"image": "mcr.microsoft.com/devcontainers/base:bullseye",
4+
"features": {
5+
"ghcr.io/devcontainers/features/github-cli:1": {},
6+
"ghcr.io/devcontainers/features/node:1": {},
7+
"ghcr.io/jlaundry/devcontainer-features/azure-functions-core-tools:1": {}
8+
},
9+
10+
"forwardPorts": [7071],
11+
12+
"postCreateCommand": ". ${NVM_DIR}/nvm.sh && nvm install && npm install",
13+
14+
"extensions": [
15+
"esbenp.prettier-vscode",
16+
"dbaeumer.vscode-eslint",
17+
"streetsidesoftware.code-spell-checker",
18+
"ms-azuretools.vscode-azurefunctions",
19+
"ms-azuretools.vscode-azurestorage",
20+
"GitHub.vscode-pull-request-github",
21+
"Azurite.azurite"
22+
]
23+
}

.npmignore

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,9 @@ dist/**/__tests__/**
77
!README.md
88
!tsconfig.base.json
99
!tsconfig.json
10-
!tsconfig.build.json
10+
!tsconfig.build.json
11+
README.md
12+
test-project
13+
definition-manifest.json
14+
.vscode
15+
.npmignore

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
16

0 commit comments

Comments
 (0)