19 lines
532 B
JSON
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"
|
|
}
|
|
} |