-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.base.json
72 lines (72 loc) · 2.23 KB
/
tsconfig.base.json
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
{
"compilerOptions": {
"paths": {
"@saibase/anchor-swap": ["libs/anchor/swap/src/index.ts"],
"@saibase/configuration": ["libs/configuration/src/index.ts"],
"@saibase/constants": ["libs/constants/src/index.ts"],
"@saibase/errors": ["libs/errors/src/index.ts"],
"@saibase/fetch": ["libs/fetch/src/index.ts"],
"@saibase/io-ts": ["libs/io-ts/src/index.ts"],
"@saibase/logger": ["libs/logger/src/index.ts"],
"@saibase/middlewares": ["libs/middlewares/src/index.ts"],
"@saibase/routes-api": ["libs/routes/api/src/index.ts"],
"@saibase/routes-public": ["libs/routes/public/src/index.ts"],
"@saibase/sai-citizenship": ["libs/sai/citizenship/src/index.ts"],
"@saibase/sai-database": ["libs/sai/database/src/index.ts"],
"@saibase/sai-entities": ["libs/sai/entities/src/index.ts"],
"@saibase/solscan-api": ["libs/solscan-api/src/index.ts"],
"@saibase/star-atlas": ["libs/star-atlas/src/index.ts"],
"@saibase/uikit": ["libs/uikit/src/index.ts"],
"@saibase/web3": ["libs/web3/src/index.ts"]
},
"plugins": [
{
"name": "@unsplash/ts-namespace-import-plugin",
"namespaces": {
"A": {
"importPath": "fp-ts/ReadonlyArray"
},
"C": {
"importPath": "fp-ts/Console"
},
"E": {
"importPath": "fp-ts/Either"
},
"Icons": {
"importPath": "@homerun/olympus-ui-icons"
},
"IO": {
"importPath": "fp-ts/IO"
},
"NEA": {
"importPath": "fp-ts/ReadonlyNonEmptyArray"
},
"O": {
"importPath": "fp-ts/Option"
},
"P": {
"importPath": "fp-ts/Predicate"
},
"R": {
"importPath": "fp-ts/ReadonlyRecord"
},
"RTE": {
"importPath": "fp-ts/ReaderTaskEither"
},
"S": {
"importPath": "fp-ts/string"
},
"t": {
"importPath": "io-ts"
},
"T": {
"importPath": "fp-ts/Task"
},
"TE": {
"importPath": "fp-ts/TaskEither"
}
}
}
]
}
}