-
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) · 757 Bytes
/
deno.json
File metadata and controls
30 lines (30 loc) · 757 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
{
"version": "2.0.1",
"name": "@nakanoaas/tagged-error",
"license": "MIT",
"exports": "./index.ts",
"tasks": {
"build": "deno run --allow-env --allow-read --allow-write --allow-run='npm' build.ts"
},
"publish": {
"include": [
"LICENSE",
"README.md",
"index.ts"
]
},
"compilerOptions": {
"strictPropertyInitialization": true,
"noUncheckedIndexedAccess": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"exactOptionalPropertyTypes": true,
"useDefineForClassFields": true,
"lib": ["deno.ns", "es2022"]
},
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.42.3",
"@std/assert": "jsr:@std/assert@^1.0.19",
"@std/testing": "jsr:@std/testing@^1.0.17"
}
}