-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
37 lines (37 loc) · 857 Bytes
/
Copy pathtsconfig.base.json
File metadata and controls
37 lines (37 loc) · 857 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
{
"$schema": "https://raw.githubusercontent.com/Effect-TS/tsgo/refs/heads/main/schema.json",
"_version": "20.1.0",
"compilerOptions": {
"moduleDetection": "force",
"composite": true,
"incremental": true,
"resolveJsonModule": true,
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"moduleResolution": "NodeNext",
"sourceMap": true,
"noEmitOnError": false,
"noErrorTruncation": true,
"target": "ESNext",
"module": "NodeNext",
"removeComments": false,
"lib": [
"ESNext"
],
"types": [
"node"
],
"noEmit": true,
"verbatimModuleSyntax": true,
"useUnknownInCatchVariables": true,
"plugins": [
{
"name": "@effect/language-service"
}
]
},
"extends": [
"@tsconfig/strictest/tsconfig.json"
]
}