-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
28 lines (28 loc) · 1.06 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
{
"extends": "@patract/dev/config/tsconfig.json",
"exclude": ["build/**/*", "**/build/**/*"],
"compilerOptions": {
"noUnusedParameters": false,
"noUnusedLocals": false,
"jsx": "react",
"baseUrl": ".",
"paths": {
"carpo-redspot": ["packages/carpo-redspot/src"],
"carpo-redspot/*": ["packages/carpo-redspot/src/*"],
"@carpo/common": ["packages/common/src"],
"@carpo/common/*": ["packages/common/src/*"],
"@carpo/compile": ["packages/compile/src"],
"@carpo/compile/*": ["packages/compile/src/*"],
"@carpo/run": ["packages/run/src"],
"@carpo/run/*": ["packages/run/src/*"],
"@carpo/test": ["packages/test/src"],
"@carpo/test/*": ["packages/test/src/*"],
"@carpo/config": ["packages/config/src"],
"@carpo/config/*": ["packages/config/src/*"],
"@carpo/react-components": ["packages/react-components/src"],
"@carpo/react-components/*": ["packages/react-components/src/*"]
},
"skipLibCheck": true,
"typeRoots": ["./node_modules/@polkadot/ts", "./node_modules/@types"]
}
}