-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
104 lines (104 loc) · 2.62 KB
/
Copy pathtsconfig.json
File metadata and controls
104 lines (104 loc) · 2.62 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"compilerOptions": {
"lib": ["esnext"],
"target": "esnext",
"moduleResolution": "node",
"esModuleInterop": true,
"strict": true,
"downlevelIteration": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"stripInternal": true,
"skipLibCheck": true,
"plugins": [
{
"name": "@unsplash/ts-namespace-import-plugin",
"namespaces": {
"A": {
"importPath": "fp-ts/lib/Array"
},
"B": {
"importPath": "fp-ts/lib/boolean"
},
"C": {
"importPath": "fp-ts/lib/Console"
},
"D": {
"importPath": "fp-ts/lib/Date"
},
"E": {
"importPath": "fp-ts/lib/Either"
},
"IO": {
"importPath": "fp-ts/lib/IO"
},
"IOE": {
"importPath": "fp-ts/lib/IOEither"
},
"IOO": {
"importPath": "fp-ts/lib/IOOption"
},
"J": {
"importPath": "fp-ts/lib/Json"
},
"N": {
"importPath": "fp-ts/lib/number"
},
"NEA": {
"importPath": "fp-ts/lib/NonEmptyArray"
},
"O": {
"importPath": "fp-ts/lib/Option"
},
"P": {
"importPath": "fp-ts/lib/Predicate"
},
"R": {
"importPath": "fp-ts/lib/Reader"
},
"RA": {
"importPath": "fp-ts/lib/ReadonlyArray"
},
"RE": {
"importPath": "fp-ts/lib/ReaderEither"
},
"RIO": {
"importPath": "fp-ts/lib/ReaderIO"
},
"RNEA": {
"importPath": "fp-ts/lib/ReadonlyNonEmptyArray"
},
"RT": {
"importPath": "fp-ts/lib/ReaderTask"
},
"RTE": {
"importPath": "fp-ts/lib/ReaderTaskEither"
},
"S": {
"importPath": "fp-ts/lib/string"
},
"T": {
"importPath": "fp-ts/lib/Task"
},
"TE": {
"importPath": "fp-ts/lib/TaskEither"
},
"TT": {
"importPath": "fp-ts/lib/TaskThese"
},
"TO": {
"importPath": "fp-ts/lib/TaskOption"
},
"TU": {
"importPath": "fp-ts/lib/Tuple"
}
}
}
]
},
"include": ["./lib/**/*", "./tests/**/*", "rolldown.config.ts"],
"exclude": ["./node_modules"]
}