forked from denoland/std
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
46 lines (46 loc) · 1.4 KB
/
deno.json
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
46
{
"compilerOptions": {
"strict": true,
"useUnknownInCatchVariables": true,
"noImplicitOverride": true
},
"fmt": {
"files": {
"exclude": [
".git",
"_wasm_crypto/target",
"cov",
"encoding/testdata/jsonc",
"node/_tools/versions",
"node/_tools/test",
"node/integrationtest/yarn.js",
"wasi/testdata"
]
}
},
"importMap": "./test_import_map.json",
"lint": {
"files": {
"exclude": [
".git",
"_wasm_crypto/target",
"encoding/testdata/jsonc",
"cov",
"node/vendor",
"node/_module/node_modules/",
"node/_tools/versions",
"node/_tools/test",
"node/integrationtest/yarn.js",
"wasi/testdata"
]
}
},
"tasks": {
"test": "deno test --doc --unstable --allow-all --coverage=./cov --ignore=node/",
"test:browser": "git grep --name-only \"// This module is browser compatible.\" | grep -v \".github/workflows\" | xargs deno cache --config browser-compat.tsconfig.json",
"node:unit": "DENO_FUTURE_CHECK=1 deno test --unstable --allow-all node/ --ignore=node/_tools/test.ts,node/_tools/versions/",
"node:test": "deno test --unstable --allow-all node/_tools/test.ts",
"node:setup": "deno run --allow-read --allow-net --allow-write node/_tools/setup.ts",
"node:check-unstable-api": "deno check ./node/module_all.ts"
}
}