-
1
-
2
-
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
-
11
-
12
-
13
-
14
-
15
-
16
-
17
-
18
-
19
-
20
-
21
-
22
-
23
// SPDX-FileCopyrightText: 2024 Shota FUJI <pockawoooh@gmail.com>
//
// SPDX-License-Identifier: CC0-1.0
{
// Local $DENO_DIR on CI
"exclude": [".deno"],
"compilerOptions": {
"noUnusedLocals": true
},
"fmt": {
"useTabs": true,
"include": ["**/*.ts", "**/*.tsx"]
},
"lint": {
"rules": {
"exclude": ["require-await", "require-yield", "no-fallthrough"]
}
},
"tasks": {
"build-docs": "deno run --allow-read=docs --allow-write=docs/.dist docs/build.ts",
"serve-docs": "cd docs/.dist && deno run --allow-read=. --allow-net https://deno.land/std/http/file_server.ts ."
}
}