-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdeno.jsonc
45 lines (41 loc) · 1.04 KB
/
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
{
// When updating this, remember to also update it in .vscode/settings.json (but leave ./bin there)
"workspace": ["./client", "./server2", "./shared"],
"exclude": ["./client/.next", "./server/dist", "./server/shared"],
"nodeModulesDir": "auto",
"imports": {
"@std/expect": "jsr:@std/expect@^1.0.10",
"@std/testing": "jsr:@std/testing@^1.0.8",
"@wca/helpers": "npm:@wca/helpers@^1.1.5",
"cubing": "npm:cubing@^0.53.8",
"remove-accents": "npm:remove-accents@^0.5.0"
},
"lint": {
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["**/*.d.ts", "./server"],
"rules": {
"tags": ["recommended"],
"include": [],
"exclude": [
"no-window",
"no-window-prefix",
"no-process-globals",
"no-explicit-any"
]
}
},
"fmt": {
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["**/*.d.ts"],
"lineWidth": 120
},
"compilerOptions": {
"lib": [
"dom",
"dom.iterable",
"dom.asynciterable",
"deno.ns"
],
"jsx": "react-jsx"
}
}