Skip to content

Commit

Permalink
wip deno
Browse files Browse the repository at this point in the history
  • Loading branch information
mikearnaldi committed Jan 14, 2023
1 parent 0689a9b commit 0edad3b
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
4 changes: 1 addition & 3 deletions .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,4 @@
# and commit this file to your remote git repository to share the goodness with others.

tasks:
- init: yarn install


- init: yarn install && brew install deno
7 changes: 7 additions & 0 deletions deno/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"deno.enable": true,
"deno.lint": true,
"deno.path": "/home/linuxbrew/.linuxbrew/bin/deno",
"editor.formatOnSave": true,
"[typescript]": { "editor.defaultFormatter": "denoland.vscode-deno" }
}
5 changes: 5 additions & 0 deletions deno/main.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import * as Effect from "https://dev.jspm.io/@effect/io/Effect";

const hello = Effect.succeed(0);

console.log(hello);
7 changes: 7 additions & 0 deletions deno/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"compilerOptions": {
"strict": true,
"noEmit": true
},
"include": ["./**/*.ts"]
}

0 comments on commit 0edad3b

Please sign in to comment.