basic drawing and initialization

This commit is contained in:
Emma
2023-02-07 11:20:07 -07:00
parent 3a12216482
commit c24bd45718
10 changed files with 944 additions and 3 deletions

14
deno.jsonc Normal file
View File

@@ -0,0 +1,14 @@
{
"compilerOptions": {
"lib": [
"DOM",
"es2015"
],
"types": [
"./global.d.ts"
]
},
"tasks": {
"dev" : "deno bundle --watch main.ts bundle.js"
}
}