-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdeno.jsonc
More file actions
45 lines (45 loc) · 1.08 KB
/
Copy pathdeno.jsonc
File metadata and controls
45 lines (45 loc) · 1.08 KB
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
{
"compilerOptions": {
"strict": true
},
"nodeModulesDir": "auto",
"imports": {
"jsdom": "npm:jsdom@29.1.1",
"typescript": "npm:typescript@6.0.3",
"rollup": "npm:rollup@4.62.2",
"@rollup/plugin-commonjs": "npm:@rollup/plugin-commonjs@29.0.3"
},
"tasks": {
"tsc": "deno run -A npm:typescript/tsc",
"rollup": "deno run -A npm:rollup/rollup -c",
"lint": "deno lint",
"check": "deno fmt --check",
"format": "deno fmt",
"test": "deno task check && deno task lint && deno task tsc && deno test -A --coverage=coverage/profile test/*.spec.js && deno coverage coverage/profile --include=src/ --lcov > coverage/lcov.info && deno task rollup"
},
"lint": {
"include": ["src/", "test/"],
"rules": {
"tags": ["recommended"],
"include": ["ban-untagged-todo"],
"exclude": ["no-irregular-whitespace", "no-node-globals"]
}
},
"fmt": {
"useTabs": true,
"indentWidth": 4,
"lineWidth": 160,
"semiColons": false,
"singleQuote": true,
"proseWrap": "always",
"include": [
"src/",
"test/",
"*.json",
"*.jsonc",
"*.md",
"*.yaml",
"*.yml"
]
}
}