-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdeno.jsonc
More file actions
32 lines (32 loc) · 1.02 KB
/
deno.jsonc
File metadata and controls
32 lines (32 loc) · 1.02 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
{
"tasks": {
"clean": "deno run -A tasks.ts clean",
"format": "deno run -A tasks.ts format",
"lint": "deno run -A tasks.ts lint",
"start": "deno run -A tasks.ts start",
"test": "deno run -A tasks.ts test",
"report": "deno run -A tasks.ts report",
"build": "deno run -A tasks.ts build",
"publish": "deno run -A tasks.ts publish"
},
"imports": {
// --------------------------------------------------------------
// Tasksmith
// --------------------------------------------------------------
"tasksmith": "https://raw.githubusercontent.com/sinclairzx81/tasksmith/0.8.5/src/index.ts",
"test": "./test/common/index.ts",
// --------------------------------------------------------------
// ParseBox
// --------------------------------------------------------------
"@sinclair/parsebox": "./src/index.ts"
},
"fmt": {
"lineWidth": 240,
"semiColons": false,
"singleQuote": true
},
"compilerOptions": {
"strict": true,
"verbatimModuleSyntax": true
}
}