-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
34 lines (33 loc) · 884 Bytes
/
deno.json
File metadata and controls
34 lines (33 loc) · 884 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
31
32
33
34
{
"name": "@purifyjs/core",
"version": "0.5.0-preview.5",
"exports": {
".": "./core/mod.ts",
"./strict": "./core/strict/mod.ts"
},
"publish": {
"include": ["core", "LICENSE", "README.md"],
"exclude": ["./**/*.test.ts"]
},
"compilerOptions": {
"lib": ["esnext", "DOM", "DOM.Iterable"],
"strict": true,
"noUncheckedIndexedAccess": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitOverride": true
},
"tasks": {
"publish:dry": "deno publish --dry-run --allow-dirty",
"vite:dev": "deno task --cwd=apps/vite dev",
"size": "./bundle_size.sh"
},
"fmt": {
"lineWidth": 140,
"indentWidth": 4
},
"lint": {
"rules": {
"exclude": ["no-namespace", "prefer-const", "no-explicit-any"]
}
}
}