-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
36 lines (36 loc) · 1.76 KB
/
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
35
36
{
"extends": "@horse-racing/dev/config/tsconfig.json",
"exclude": ["build/**/*", "**/build/**/*"],
"compilerOptions": {
"noUnusedParameters": false,
"noUnusedLocals": false,
"jsx": "react",
"baseUrl": ".",
"paths": {
"@horse-racing/app": ["packages/app/src"],
"@horse-racing/app/*": ["packages/app/src/*"],
"@horse-racing/app-config": ["packages/app-config/src"],
"@horse-racing/app-config/*": ["packages/app-config/src/*"],
"@horse-racing/react-components": ["packages/react-components/src"],
"@horse-racing/react-components/*": ["packages/react-components/src/*"],
"@horse-racing/react-hooks": ["packages/react-hooks/src"],
"@horse-racing/react-hooks/*": ["packages/react-hooks/src/*"],
"@horse-racing/react-wallet": ["packages/react-wallet/src"],
"@horse-racing/react-wallet/*": ["packages/react-wallet/src/*"],
"@horse-racing/page-blind-box": ["packages/page-blind-box/src"],
"@horse-racing/page-blind-box/*": ["packages/page-blind-box/src/*"],
"@horse-racing/page-home": ["packages/page-home/src"],
"@horse-racing/page-home/*": ["packages/page-home/src/*"],
"@horse-racing/page-market": ["packages/page-market/src"],
"@horse-racing/page-market/*": ["packages/page-market/src/*"],
"@horse-racing/page-nft-list": ["packages/page-nft-list/src"],
"@horse-racing/page-nft-list/*": ["packages/page-nft-list/src/*"],
"@horse-racing/page-start-game": ["packages/page-start-game/src"],
"@horse-racing/page-start-game/*": ["packages/page-start-game/src/*"],
"@horse-racing/service": ["packages/service/src"],
"@horse-racing/service/*": ["packages/service/src/*"]
},
"skipLibCheck": true,
"typeRoots": ["./node_modules/@types"]
}
}