-
Notifications
You must be signed in to change notification settings - Fork 7
/
deno.jsonc
36 lines (36 loc) · 951 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
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "dom.asynciterable", "deno.ns"]
},
"imports": {
"@doctor/create-tag": "jsr:@doctor/create-tag@^0.2.0",
"@luca/esbuild-deno-loader": "jsr:@luca/esbuild-deno-loader@^0.11.1",
"@std/path": "jsr:@std/path@^1.0.8",
"esbuild": "npm:esbuild@^0.24.0"
},
"exclude": ["**/*.js"],
"tasks": {
"test": "deno run -A test.ts",
"build": "deno run -A build.ts",
"ok": "deno fmt && deno lint && deno task build"
},
"lint": {
"rules": {
"tags": ["recommended"],
"include": [
"camelcase",
"explicit-function-return-type",
"explicit-module-boundary-types",
"no-eval",
"no-inferrable-types",
"no-sparse-arrays",
"no-sync-fn-in-async-fn",
"no-throw-literal",
// "no-undef",
"prefer-ascii",
"single-var-declarator",
"verbatim-module-syntax"
]
}
}
}