-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathdeno.json
More file actions
36 lines (36 loc) · 1.08 KB
/
deno.json
File metadata and controls
36 lines (36 loc) · 1.08 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
{
"workspace": [
"./projects/api",
"./projects/playground",
"./projects/openapi"
],
"tasks": {
"reinstall": "deno install --allow-scripts --reload",
"install": "deno install --allow-scripts --frozen",
"format": "deno fmt && deno lint --fix",
"openapi": "cd projects/openapi && deno task start",
"openapi:dev": "cd projects/openapi && deno task dev",
"openapi:generate": "cd projects/openapi && deno task generate",
"openapi:validate": "cd projects/openapi && deno task validate",
"playground:dev": "cd projects/playground && deno task dev"
},
"fmt": {
"singleQuote": true,
"indentWidth": 2
},
"compilerOptions": {
"noUnusedParameters": true,
"noUnusedLocals": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noFallthroughCasesInSwitch": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"strictBindCallApply": true,
"strict": true,
"verbatimModuleSyntax": true
}
}