-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
38 lines (34 loc) · 1022 Bytes
/
tsconfig.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
{
"compilerOptions": {
/* Base Options: */
"esModuleInterop": true,
"skipLibCheck": true,
"target": "ESNext",
"allowJs": false,
"resolveJsonModule": true,
"moduleDetection": "force",
"incremental": true,
/* Strictness */
"strict": true,
"alwaysStrict": true,
"noImplicitOverride": true,
"useUnknownInCatchVariables": true,
"noImplicitReturns": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"forceConsistentCasingInFileNames": true,
/* Transpiling with Bun */
"moduleResolution": "Bundler",
"module": "ESNext",
"noEmit": true,
"lib": ["ESNext", "DOM"],
"types": ["@cloudflare/workers-types", "hono", "@hono/zod-openapi"],
"jsx": "react-jsx",
"jsxImportSource": "hono/jsx",
"typeRoots": ["./node_modules"],
"noErrorTruncation": true // TLDR - Don't truncate errors (useful for debugging)
}
}