-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdenon.json
46 lines (46 loc) · 1.32 KB
/
denon.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"$schema": "https://deno.land/x/[email protected]/schema.json",
"watcher": {
"interval": 300,
"match": ["*.*", "src/**/*.*"],
"skip": ["public/*"],
"legacy": false
},
"scripts": {
"build": {
"cmd": "deno bundle --config tsconfig.json src/client.tsx public/assets/js/client.bundle.js",
"desc": "bundle my client.tsx file"
},
"_build_denopack": {
"cmd": "deno run main.ts -- build",
"desc": "bundle my client.tsx file",
"allow": [
"env",
"net",
"read",
"run"
],
"watch": false,
"unstable": true
},
"start": [
{
"cmd": "deno bundle --config tsconfig.json src/client.tsx public/assets/js/client.bundle.js",
"desc": "bundle my client.tsx file"
},
{
"cmd": "deno run main.ts -- --browse serve",
"desc": "run web server",
"allow": [
"env",
"net",
"read",
"run"
],
"watch": true,
"unstable": true
}
],
"cache": "deno cache src/deps/*.ts"
}
}