-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
37 lines (37 loc) · 1.17 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
{
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"jsx": "precompile",
"jsxImportSource": "@hono/hono/jsx"
},
"tasks": {
"upgrade-deps": "deno cache --frozen-lockfile=false 'packages/*/src/index.ts' test npm:@types/node",
"check": "deno fmt --check && deno lint && deno check 'packages/**/*.ts' && deno doc --lint 'packages/**/*.ts'",
"test": "deno test --allow-net --allow-read=packages/ --no-check ./test ./packages",
"test:ci": "deno test --doc --allow-net --allow-read=packages/ --frozen-lockfile ./test ./packages './**/*.md'",
"bump-package": "deno run --allow-read=. --allow-write=. --allow-run=deno,git-cliff tools/bump-package.ts"
},
"workspace": {
"members": [
"./packages/nestjs-denokv",
"./packages/nestjs-platform-hono",
"./packages/nestjs-platform-oak"
]
},
"imports": {
"@nestjs/common": "npm:@nestjs/common@^10",
"@nestjs/core": "npm:@nestjs/core@^10",
"@oak/oak": "jsr:@oak/oak@^17",
"@hono/hono": "jsr:@hono/hono@^4"
},
"lint": {
"rules": {
"include": [
"no-console"
]
}
},
"exclude": ["./tmp"],
"unstable": ["kv"]
}