gale/deno.json
2025-08-01 11:13:10 -04:00

19 lines
532 B
JSON

{
"compilerOptions":
{
"checkJs": true,
"lib": ["deno.window", "DOM"],
"types": ["./dist/core.d.ts"]
},
"tasks":
{
"work": "deno run -Ar ./scripts/dev_server.ts",
"scan": "deno run -Ar ./scripts/refresh_types.ts",
"html": "deno run -Ar ./scripts/scaffold.ts --html",
"make": "deno bundle --no-lock --platform=browser --inline-imports=true --output=bundle.js --minify src/bundle_entry.ts"
},
"imports":
{
"entry":"./app.js"
}
}