-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.jsonc
21 lines (21 loc) · 876 Bytes
/
deno.jsonc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"compilerOptions": {
"lib": ["deno.ns", "deno.window", "deno.unstable"],
"jsx": "react-jsx",
"jsxImportSource": "https://esm.quack.id/preact@10.19.3"
},
"tasks": {
"test": "deno test --no-check --unstable -A",
"start:server": "./packages/server/main.ts",
"watch": "deno run -A --unstable --watch ./packages/server/main.ts",
"deploy": "deployctl deploy --project=quackware-uptime --prod ./packages/server/main.ts --exclude='packages/server/node_modules,packages/www/node_modules' --include=packages,dist",
"delete-checks": "deno run -A --unstable --no-check ./tasks/delete-checks.ts"
},
"lint": {},
"deploy": {
"project": "663ec0bf-2893-4276-8670-ce630aafa091",
"exclude": ["packages/server/node_modules", "packages/www/node_modules"],
"include": ["packages", "dist"],
"entrypoint": "packages/server/main.ts"
}
}