Skip to content

Commit 870ec4b

Browse files
committed
Dependencies updated - basics works
1 parent 9bda370 commit 870ec4b

File tree

10 files changed

+2300
-67
lines changed

10 files changed

+2300
-67
lines changed

.devcontainer/azure-upload-file-to-storage/devcontainer.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"name": "Tutorial: Upload file to storage with SAS token",
55
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6-
"image": "mcr.microsoft.com/devcontainers/typescript-node:0-18",
6+
"image": "mcr.microsoft.com/devcontainers/typescript-node:0-20",
77

88
// Features to add to the dev container. More info: https://containers.dev/features.
99
"features": {
@@ -29,8 +29,9 @@
2929
"extensions": [
3030
"ms-azuretools.vscode-azurefunctions",
3131
"ms-azuretools.vscode-azurestaticwebapps",
32-
"ms-azuretools.vscode-azurestorage"
33-
]
32+
"ms-azuretools.vscode-azurestorage",
33+
"humao.rest-client"
34+
]
3435
}
3536
}
3637
}

azure-upload-file-to-storage/api/.eslintignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

azure-upload-file-to-storage/api/.eslintrc

Lines changed: 0 additions & 18 deletions
This file was deleted.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import globals from "globals";
2+
import pluginJs from "@eslint/js";
3+
import tseslint from "typescript-eslint";
4+
5+
6+
/** @type {import('eslint').Linter.Config[]} */
7+
export default [
8+
{files: ["**/*.{js,mjs,cjs,ts}"]},
9+
{languageOptions: { globals: globals.browser }},
10+
pluginJs.configs.recommended,
11+
...tseslint.configs.recommended,
12+
];
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
GET http://localhost:7071/api/status HTTP/1.1
2+
content-type: application/json

0 commit comments

Comments
 (0)