Skip to content

Commit 2843343

Browse files
committedJun 6, 2021
init
0 parents  commit 2843343

19 files changed

+2678
-0
lines changed
 

‎.gitignore

Whitespace-only changes.

‎.vscode/extensions.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
3+
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
4+
5+
// List of extensions which should be recommended for users of this workspace.
6+
"recommendations": [
7+
"denoland.vscode-deno",
8+
"ms-azuretools.vscode-docker",
9+
"esbenp.prettier-vscode",
10+
"bradlc.vscode-tailwindcss",
11+
],
12+
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
13+
"unwantedRecommendations": [
14+
15+
]
16+
}

‎.vscode/settings.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// Added some settings from https://github.com/denoland/vscode_deno
2+
{
3+
"deno.enable": true,
4+
"deno.import_intellisense_origins": {
5+
"https://deno.land": true,
6+
},
7+
8+
/*
9+
Could go full deno and use the standard formatter rather than prettier
10+
"[typescript]": {
11+
// "editor.defaultFormatter": "denoland.vscode-deno",
12+
},
13+
*/
14+
}

‎.vscode/tasks.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "deno: bundle",
6+
"type": "shell",
7+
"command": "make bundle",
8+
"group": {
9+
"kind": "build",
10+
"isDefault": true
11+
}
12+
}
13+
]
14+
}

‎Makefile

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
BUNDLE_ARGS=-c tsconfig.json --unstable src/app.ts bundle.js
2+
3+
bundle:
4+
deno bundle $(BUNDLE_ARGS)
5+
6+
dev:
7+
deno bundle --watch $(BUNDLE_ARGS)

0 commit comments

Comments
 (0)
Please sign in to comment.