-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
62 lines (62 loc) · 1.16 KB
/
Copy pathdeno.json
File metadata and controls
62 lines (62 loc) · 1.16 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"imports": {
"@std/assert": "jsr:@std/assert@1",
"@std/path": "jsr:@std/path@1",
"@std/semver": "jsr:@std/semver@1",
"@cross/test": "jsr:@cross/test@0.0.10"
},
"fmt": {
"exclude": [
"target/",
"npm/",
"coverage/",
"reports/",
"test-results/",
".claude/",
"LICENSE",
"*.rs",
"Cargo.{toml,lock}",
"package.json"
]
},
"lint": {
"exclude": [
"target/",
"npm/",
"coverage/",
"reports/",
"test-results/",
".claude/",
"examples/",
"*.rs",
"Cargo.{toml,lock}",
"package.json",
"tests/node-test-runner.ts",
"scripts/*.js",
"src/node.ts",
"src/bun.ts",
"src/index.ts"
],
"rules": {
"exclude": ["ban-unused-ignore", "ban-ts-comment"]
}
},
"exclude": [
".devcontainer/",
".vscode/",
".zed/",
"target/",
"npm/",
"coverage/",
"test-results/",
"package.json",
"tests/node-test-runner.ts",
"scripts/*.js"
],
"nodeModulesDir": "auto",
"minimumDependencyAge": "P2D",
"compilerOptions": {
"lib": ["deno.window"],
"strict": true
}
}