Skip to content

Commit 8324f41

Browse files
committed
TS boilerplate Common & ESM
1 parent 87c39a4 commit 8324f41

File tree

15 files changed

+2141
-1
lines changed

15 files changed

+2141
-1
lines changed

.devcontainer/devcontainer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
"customizations": {
2121
"vscode": {
2222
"extensions": [
23-
"rvest.vs-code-prettier-eslint"
23+
"rvest.vs-code-prettier-eslint",
24+
"humao.rest-client"
2425
]
2526
}
2627
}

ts-boilerplate-common/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
dist
2+
.env
3+
node_modules
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
GET http://localhost:3000 HTTP/1.1
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
POST http://localhost:3000/data HTTP/1.1
2+
content-type: application/json
3+
4+
{
5+
"name": "sample",
6+
"time": "Wed, 21 Oct 2015 18:27:50 GMT"
7+
}

0 commit comments

Comments
 (0)