-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.jsonc
More file actions
58 lines (58 loc) · 2.12 KB
/
deno.jsonc
File metadata and controls
58 lines (58 loc) · 2.12 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"lock": true,
"tasks": {
"lint": "deno lint packages/examples/ packages/async-framework/",
"fmt": "deno fmt packages/examples/ packages/async-framework/",
"test": "deno test -RWN --allow-run=deno,bun,node,npx --clean --trace-leaks",
"test:dev": "deno test --allow-read --allow-env --allow-write --quiet packages/dev/server-utils/bundler.test.ts",
"start": "deno run -A packages/dev/server.ts",
"start:app": "deno run -A packages/example-apps/hello-world/server.tsx",
"dev:example-apps": "deno run --watch --allow-env --allow-read --allow-net packages/example-apps/hello-world/server.tsx",
"dev": "deno run -A --watch packages/dev/server.ts --livereload"
},
"workspace": ["./packages/async-framework/"],
"imports": {
// packages
// "async-framework": "./packages/async-framework/index.ts",
// "async-framework/": "./packages/async-framework/",
// "custom-element-signals": "./packages/custom-element-signals/index.ts",
// deps
"@luca/esbuild-deno-loader": "jsr:@luca/esbuild-deno-loader@^0.11.0",
"esbuild": "npm:esbuild@^0.24.0",
"hono": "npm:hono@^4",
"zod": "npm:zod",
"@hono/zod-validator": "npm:@hono/zod-validator",
"@libs/testing": "jsr:@libs/testing@^2.2.3",
"@std/jsonc": "jsr:@std/jsonc@^1",
"@std/http": "jsr:@std/http@^1",
"@std/async": "jsr:@std/async@^1",
"@std/path": "jsr:@std/path@^1",
"@std/assert": "jsr:@std/assert@^1",
"@std/expect": "jsr:@std/expect@^1.0.0",
"rollup": "npm:rollup@^3.25.1",
"@rollup/plugin-typescript": "npm:@rollup/plugin-typescript@^11.1.6",
"tslib": "npm:tslib@^2.3.0",
"#/": "./packages/"
},
"compilerOptions": {
"noImplicitAny": false,
"checkJs": false,
"lib": ["deno.window", "deno.unstable", "deno.ns", "dom"],
"strict": true,
"jsx": "react-jsx",
// "jsxFactory": "jsx",
// "jsxFragmentFactory": "Fragment",
"jsxImportSource": "hono/jsx"
},
"fmt": {
"exclude": [
"packages/examples/qwik-hello-world/",
"packages/custom-element-signals/"
]
},
"lint": {
"rules": {
"exclude": ["no-this-alias", "no-explicit-any"]
}
}
}