-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
34 lines (34 loc) · 1001 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
28
29
30
31
32
33
34
{
"compilerOptions": {
"declaration": true,
"declarationMap": true,
"strict": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"noImplicitAny": true,
"esModuleInterop": true,
"moduleResolution": "bundler",
"module": "ESNext",
"resolveJsonModule": true,
"skipLibCheck": true,
"target": "ESNext",
"jsx": "react",
"baseUrl": ".",
"paths": {
"~/scripts/*": ["scripts/*"],
"@crossbell/*": ["packages/*/src"],
"@crossbell/react-account/*": ["packages/react-account/src/*"]
}
},
"references": [
{ "path": "packages/connect-kit/tsconfig.json" },
{ "path": "packages/react-account/tsconfig.json" },
{ "path": "packages/contract/tsconfig.json" },
{ "path": "packages/indexer/tsconfig.json" },
{ "path": "packages/notification/tsconfig.json" },
{ "path": "packages/ui/tsconfig.json" },
{ "path": "packages/util-ethers/tsconfig.json" },
{ "path": "packages/util-hooks/tsconfig.json" },
{ "path": "packages/util-metadata/tsconfig.json" }
]
}