-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
63 lines (54 loc) · 1.59 KB
/
tsconfig.json
File metadata and controls
63 lines (54 loc) · 1.59 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"compilerOptions": {
"verbatimModuleSyntax": true,
// Classification follows https://www.typescriptlang.org/tsconfig
// Type Checking
"strict": true,
// exactOptionalPropertyTypes: false,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
// noPropertyAccessFromIndexSignature: false,
// noUncheckedIndexedAccess: false,
"noUncheckedSideEffectImports": true,
// noUnusedLocals: false,
// noUnusedParameters: false,
"useUnknownInCatchVariables": true,
// Modules
"module": "preserve",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"rewriteRelativeImportExtensions": true,
// Emit
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"stripInternal": true, // skip type emit for @internal types
// JavaScript Support
"allowJs": false,
"checkJs": false,
// Interop Constraints
"forceConsistentCasingInFileNames": true,
// Language and Environment
"jsx": "react-jsx",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"target": "ES2023",
"useDefineForClassFields": true,
// Projects
"composite": true,
"incremental": true,
// Completeness
"skipLibCheck": true, // skip all type checks for .d.ts files
"paths": {
"@uts/sdk": ["./packages/sdk/src/index.ts"]
},
"customConditions": ["uts-source"]
},
"references": [
{ "path": "./packages/sdk" },
{ "path": "./packages/sdk/test/" },
{ "path": "./apps/web" }
]
}