-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
63 lines (63 loc) · 1.73 KB
/
tsconfig.base.json
File metadata and controls
63 lines (63 loc) · 1.73 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
{
"compileOnSave": false,
"compilerOptions": {
// module settings
"target": "ES2024",
"lib": ["ES2024"],
"types": ["node"],
"module": "ES2022",
"moduleDetection": "force",
"moduleResolution": "bundler",
"esModuleInterop": true,
"resolveJsonModule": true,
"baseUrl": ".",
"isolatedModules": true,
// output settings
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"emitDecoratorMetadata": true,
"importHelpers": true,
"noEmitOnError": true,
// type checking settings
"strict": true,
"strictNullChecks": true,
"allowJs": false,
"checkJs": false,
"noUncheckedSideEffectImports": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": false,
"noErrorTruncation": false,
// TODO: enable `exactOptionalPropertyTypes` globally
"exactOptionalPropertyTypes": false,
"noUnusedLocals": true,
"noUnusedParameters": false,
"noImplicitThis": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitAny": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"noFallthroughCasesInSwitch": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"plugins": [
{
"name": "@effect/language-service",
"diagnostics": true,
"diagnosticSeverity": {
"floatingEffect": "warning"
},
"quickinfo": true,
"completions": true,
"goto": true,
"allowedDuplicatedPackages": [],
"barrelImportPackages": [],
"namespaceImportPackages": []
}
]
},
"exclude": [".yarn/unplugged", "tmp"]
}