-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
56 lines (51 loc) · 1.52 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"compilerOptions": {
/* Base */
"esModuleInterop": true,
"skipLibCheck": true,
"target": "ESNext",
"allowJs": true,
"resolveJsonModule": true,
"moduleDetection": "force",
"isolatedModules": true,
/* Strictness */
"strict": true,
"verbatimModuleSyntax": true,
"forceConsistentCasingInFileNames": true,
"useDefineForClassFields": true,
"strictNullChecks": true,
"strictPropertyInitialization": false,
/* Linting */
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitReturns": true,
"noImplicitAny": true,
"noImplicitThis": true,
/* Bundler/Compiler */
"moduleResolution": "Bundler",
"module": "ESNext",
"noEmit": true,
"allowImportingTsExtensions": true,
/* Runtime/Framework */
"lib": ["ESNext"],
"jsx": "react-jsx",
"jsxImportSource": "hono/jsx",
/* Misc */
"types": [
"vite/client",
"@total-typescript/ts-reset",
"node",
"@cloudflare/workers-types"
]
},
// using unified tsconfig.json instead of separate tsconfig.json /
// tsconfig.app.json / tsconfig.node.json because of two reasons:
// 1. separate configs with references to each other don't work well
// with "noEmit": true, see https://github.com/vitejs/vite/issues/18139
// 2. although e2e is ran in node env, it has pieces like page.evaluate
// callback, that is run in browser, so dedicated node config still
// needs to include browser env as well
"include": ["src", "e2e", "scripts", "*.config.ts"]
}