-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
43 lines (36 loc) · 1012 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
39
40
41
42
43
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
/* Type Checking */
"noUncheckedIndexedAccess": true, // Increases type-safety
"strict": true,
/* Modules */
"allowImportingTsExtensions": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"paths": {
"~/*": ["./src/*"] // Alias for absolute imports
},
"resolveJsonModule": true,
"types": ["bun-types"], // add Bun global
/* Emit */
"downlevelIteration": true,
"noEmit": true,
/* JavaScript Support */
"allowJs": true,
/* Interop Constraints */
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
/* Language and Environment */
"jsx": "react",
"jsxFactory": "Html.createElement",
"jsxFragmentFactory": "Html.Fragment",
"lib": ["ESNext"],
"moduleDetection": "force",
"target": "ESNext",
/* Projects */
"composite": true,
/* Completeness */
"skipLibCheck": true
}
}