-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
57 lines (57 loc) · 1.59 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"compilerOptions": {
"exactOptionalPropertyTypes": false,
"lib": [
"deno.window",
"deno.unstable"
],
"noImplicitThis": true,
"strictNullChecks": true
},
"fmt": {
"exclude": [
"node_modules"
],
"indentWidth": 2,
"lineWidth": 80,
"proseWrap": "preserve",
"semiColons": true,
"singleQuote": false,
"useTabs": false
},
"imports": {
"$std/": "https://deno.land/std@0.204.0/",
"@bin/": "./bin/",
"@modules/": "./modules/",
"@routes/": "./routes/",
"@utils/": "./utils/"
},
"lint": {
"exclude": [
"node_modules"
],
"rules": {
"exclude": [
"no-empty-interface",
"no-namespace"
]
}
},
"lock": "deno.lock",
"nodeModulesDir": true,
"scopes": {
"./node_modules/": {
"express-serve-static-core": "./modules/server/express-serve-static-core.d.ts"
}
},
"tasks": {
"cache": "deno task manage cache -d",
"cache:clean": "deno task manage cache -d -c",
"cache:prod": "deno task manage cache",
"deploy": "deployctl deploy --project=duofiction --exclude=.git,node_modules,.env,.tmp,bin,.github,prettier-config.mjs,scripts.config.ts duofiction.main.ts",
"deploy:prod": "deployctl deploy --prod --project=duofiction --exclude=.git,node_modules,.env,.tmp,bin,.github,prettier-config.mjs,scripts.config.ts duofiction.main.ts",
"generate:manifest": "deno task manage generate manifest --dir=routes --file=duofiction.manifest.ts",
"manage": "deno run --allow-all bin/manage.ts",
"start": "deno task generate:manifest && denon start"
}
}