-
Notifications
You must be signed in to change notification settings - Fork 25
/
tsconfig.json
27 lines (27 loc) · 953 Bytes
/
tsconfig.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
{
"compilerOptions": {
"lib": [
"es2020"
],
"paths": {
"@standard-crypto/farcaster-js-hub-rest": ["./packages/farcaster-js-hub-rest/src"],
"@standard-crypto/farcaster-js-hub-rest/*": ["./packages/farcaster-js-hub-rest/src/*"],
"@standard-crypto/farcaster-js-neynar": ["./packages/farcaster-js-neynar/src"],
"@standard-crypto/farcaster-js-neynar/*": ["./packages/farcaster-js-neynar/src/*"],
"@standard-crypto/farcaster-js-cli": ["./packages/farcaster-js-cli/src"],
"@standard-crypto/farcaster-js-cli/*": ["./packages/farcaster-js-cli/src/*"]
},
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "es2022",
"strict": true,
"sourceMap": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowUnreachableCode": false,
"alwaysStrict": true,
"resolveJsonModule": true,
"baseUrl": ".",
}
}