-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
34 lines (34 loc) · 1.17 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
{
"compilerOptions": {
"target": "es2020",
"module": "commonjs",
"moduleResolution": "node",
"esModuleInterop": true,
"declaration": true,
"strict": true,
"strictFunctionTypes": true,
"noUnusedLocals": false,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"removeComments": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@unleashit/configs": ["./shared/configs"],
"@unleashit/common": ["./shared/common/src"],
"@unleashit/asyncHandler": ["./packages/asyncHandler/src"],
"@unleashit/contact": ["./packages/contact/src"],
"@unleashit/forgotPassword": ["./packages/forgotPassword/src"],
"@unleashit/login": ["./packages/login/src"],
"@unleashit/modal": ["./packages/modal/src"],
"@unleashit/navigation": ["./packages/navigation/src"],
"@unleashit/pagination": ["./packages/pagination/src"],
"@unleashit/recursiveDataLister": ["./packages/recursiveDataLister/src"],
"@unleashit/signup": ["./packages/signup/src"]
}
},
"files": ["fixes.d.ts"],
"exclude": ["node_modules"]
}