-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.json
47 lines (39 loc) · 1.05 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
{
// include paths
"include": ["src", "tests"],
"compilerOptions": {
"lib": ["ESNext"],
"target": "ESNext",
"module": "ESNext",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
// elysia jsx
"jsx": "react",
"jsxFactory": "Html.createElement",
"jsxFragmentFactory": "Html.Fragment",
// paths
"paths": {
"@lib": ["./src/lib"],
"@index": ["./src/index"],
"@constants": ["./src/constants"],
"@lib/*": ["./src/lib/*"],
"@routes/*": ["./src/routes/*"],
"@localTypes/*": ["./src/types/*"],
"@services/*": ["./src/services/*"]
},
/* bun recommended settings */
// Bundler mode
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags
"noUnusedLocals": true,
"noUnusedParameters": true,
"noPropertyAccessFromIndexSignature": true
}
}