-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
37 lines (37 loc) · 953 Bytes
/
tsconfig.base.json
File metadata and controls
37 lines (37 loc) · 953 Bytes
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
{
"compilerOptions": {
"importHelpers": true,
"isolatedModules": true,
"lib": ["es2022"],
"module": "nodenext",
"moduleResolution": "nodenext",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"strict": true,
"target": "es2022",
"baseUrl": ".",
"paths": {
"@effectify/solid-effect-atom": ["packages/solid/effect-atom/src/index.ts"]
},
"customConditions": ["@effectify/source"],
"plugins": [
{
"name": "@effect/language-service",
"transform": "@effect/language-service/transform",
"namespaceImportPackages": [
"effect",
"@effect/platform",
"@effect/platform-node",
"@effectify/cli"
],
"diagnosticSeverity": {
"importFromBarrel": "error"
}
}
]
}
}