-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
43 lines (43 loc) · 1.23 KB
/
deno.json
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
{
"workspace": [
"./cfb-core",
"./cfb-svg",
"./cfb-web"
],
"tasks": {
"check": "deno run -A ./scripts/check.ts",
"build": "deno run -A ./scripts/build.ts",
"bump": "deno run --allow-read --allow-write --allow-env ./scripts/bump_version.ts",
"publish:npm": "deno run -A ./scripts/publish_npm.ts",
"dev:web": "deno run -A ./scripts/web/dev_web.ts",
"start:web": "deno run -A ./scripts/web/serve_web.ts",
"run:web": "deno run -A ./scripts/web/run_web.ts",
"bundle:web": "deno run -A ./scripts/web/bundle_web.ts"
},
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.41.3",
"@svgdotjs/svg.js": "npm:@svgdotjs/svg.js@^3.2.0",
"uuid": "npm:uuid@^11.0.2",
"assert_equals": "https://deno.land/[email protected]/assert/assert_equals.ts",
"assert_almost_equals": "https://deno.land/[email protected]/assert/assert_almost_equals.ts"
},
"compilerOptions": {
"lib": [
"dom",
"deno.ns"
],
"strict": true,
"verbatimModuleSyntax": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noPropertyAccessFromIndexSignature": true
},
"fmt": {
"lineWidth": 89,
"exclude": [
"./**/dist/**",
"./**/npm/**"
]
}
}