doodler/deno.jsonc
2023-11-04 13:16:11 -06:00

19 lines
359 B
JSON

{
"compilerOptions": {
"lib": [
"DOM",
"es2023"
],
"types": [
"./global.d.ts"
]
},
"tasks": {
"dev": "deno bundle --watch main.ts bundle.js"
},
"imports": {
"std": "https://deno.land/std@0.205.0/mod.ts",
"std/": "https://deno.land/std@0.205.0/",
"dpng": "https://deno.land/x/dpng@0.7.5/mod.ts"
}
}