-
Notifications
You must be signed in to change notification settings - Fork 2
/
deno.json
28 lines (28 loc) · 1.12 KB
/
deno.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"tasks": {
"build-htmx": "deno run --allow-read --allow-write ./htmx/htmx_build.ts",
"test": "deno test --config ./tsconfig.json",
"start": "deno task all-examples",
"denoRun": "deno run --allow-env --allow-net --allow-read --allow-run --allow-write --watch",
"examples": "export NO_SERVE=true && deno task denoRun ./examples/examples.tsx",
"tasks": "deno run --allow-read --allow-write ./scripts/tasks.ts",
"click-to-edit": "deno task denoRun ./examples/1.click-to-edit.tsx",
"bulk-update": "deno task denoRun ./examples/2.bulk-update.tsx",
"click-to-load": "deno task denoRun ./examples/3.click-to-load.tsx",
"delete-row": "deno task denoRun ./examples/4.delete-row.tsx",
"edit-row": "deno task denoRun ./examples/5.edit-row.tsx",
"client-code": "deno task denoRun ./examples/98.client-code.tsx",
"web-component": "deno task denoRun ./examples/99.web-component.tsx"
},
"compilerOptions": {
"lib": [
"deno.ns",
"dom",
"dom.iterable",
"dom.asynciterable"
],
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"importMap": "./import_map.json"
}