-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.jsonc
47 lines (47 loc) · 963 Bytes
/
deno.jsonc
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
{
"workspace": [
"./src/db",
"./src/firebase",
"./src/pwa",
"./src/web"
],
"imports": {
"@deno/emit": "jsr:@deno/emit@^0.45.0",
"@std/assert": "jsr:@std/assert@1",
"@std/fs": "jsr:@std/fs@^1.0.5",
"@std/io": "jsr:@std/io@^0.225.0",
"@std/path": "jsr:@std/path@^1.0.7"
},
"compilerOptions": {
"lib": [
"dom",
"deno.ns",
"deno.window",
"DOM.Iterable",
"DOM.AsyncIterable"
],
"strict": false,
"strictFunctionTypes": false,
"noUnusedLocals": true,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": false
},
"lint": {
"rules": {
"tags": ["recommended"],
"exclude": [
"no-explicit-any",
"require-await",
"no-unused-vars"
]
}
},
"fmt": {
"useTabs": false,
"semiColons": true,
"singleQuote": true,
"indentWidth": 2
}
}