-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
44 lines (44 loc) · 1.16 KB
/
deno.json
File metadata and controls
44 lines (44 loc) · 1.16 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
{
"tasks": {
"check-examples": {
"description": "Run Type Checking on Examples",
"command": "deno check ./examples/**/*.ts"
},
"check": {
"description": "Run Type Checking on Source Files",
"command": "deno check ./**/*.ts"
}
},
"exclude": ["examples"],
"compilerOptions": {
"types": [
"./kintsugi/types.d.ts",
"./kintsugi/src/app/app.d.ts",
"./kintsugi/src/builder/builder.d.ts",
"./kintsugi/src/config/config.d.ts",
"./kintsugi/src/handler/handler.d.ts",
"./kintsugi/src/loader/loader.d.ts",
"./kintsugi/src/plugin/plugin.d.ts",
"./kintsugi/src/router/router.d.ts"
]
},
"imports": {
"@std/jsonc": "jsr:@std/jsonc",
"@std/fs": "jsr:@std/fs",
"@std/path": "jsr:@std/path"
},
"workspace": [
"./kintsugi",
"./packages/Builder-DenoEmit",
"./packages/Builder-ESBuild",
"./packages/Builder-PostCSS",
"./packages/Builder-Rolldown",
"./packages/Builder-RSPack",
"./packages/Builder-TailwindCSS",
"./packages/Builder-Vite",
"./packages/Plugin-BasicAuth",
"./packages/Plugin-Fresh"
],
"nodeModulesDir": "none",
"lock": false
}