-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
30 lines (30 loc) · 719 Bytes
/
deno.json
File metadata and controls
30 lines (30 loc) · 719 Bytes
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
{
"name": "@garciat/wgpu-memory",
"version": "1.2.6",
"exports": {
".": "./src/mod.ts"
},
"publish": {
"exclude": [
".devcontainer",
".github",
".vscode",
"examples",
"docs",
"**/*.test.ts"
]
},
"tasks": {
"bench": "deno bench --json ./benchmarks",
"coverage": "deno coverage --lcov ./cov",
"test": "deno test --parallel --ignore=benchmarks",
"test:coverage": "deno test --coverage=./cov --parallel --ignore=benchmarks",
"devcheck": "deno fmt --check && deno lint && deno task test:coverage && deno coverage --html ./cov && open cov/html/index.html"
},
"fmt": {
"exclude": []
},
"compilerOptions": {
"strict": true
}
}