-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
58 lines (55 loc) · 2.27 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext", "scripthost"],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"paths": {
"@animate/components/*": ["./packages/Animate/src/components/*"],
"@animate/hooks/*": ["./packages/Animate/src/hooks/*"],
"@animate/mocks/*": ["./packages/Animate/src/mocks/*"],
"@animate/helpers/*": ["./packages/Animate/src/helpers/*"],
"@animate/types/*": ["./packages/Animate/src/types/*"],
"@animate/icons/*": ["./packages/Animate/src/assets/icons/*"],
"@animate/constants/*": ["./packages/Animate/src/constants/*"],
"@typography/components/*": ["./packages/Typography/src/components/*"],
"@typography/hooks/*": ["./packages/Typography/src/hooks/*"],
"@typography/mocks/*": ["./packages/Typography/src/mocks/*"],
"@typography/helpers/*": ["./packages/Typography/src/helpers/*"],
"@typography/types/*": ["./packages/Typography/src/types/*"],
"@typography/icons/*": ["./packages/Typography/src/assets/icons/*"],
"@typography/constants/*": ["./packages/Typography/src/constants/*"],
"@forms/components/*": ["./packages/Forms/src/components/*"],
"@forms/hooks/*": ["./packages/Forms/src/hooks/*"],
"@forms/mocks/*": ["./packages/Forms/src/mocks/*"],
"@forms/helpers/*": ["./packages/Forms/src/helpers/*"],
"@forms/types/*": ["./packages/Forms/src/types/*"],
"@forms/icons/*": ["./packages/Forms/src/assets/icons/*"],
"@forms/constants/*": ["./packages/Forms/src/constants/*"],
"@base/components/*": ["./packages/Base/src/components/*"],
"@base/hooks/*": ["./packages/Base/src/hooks/*"],
"@base/mocks/*": ["./packages/Base/src/mocks/*"],
"@base/helpers/*": ["./packages/Base/src/helpers/*"],
"@base/types/*": ["./packages/Base/src/types/*"],
"@base/icons/*": ["./packages/Base/src/assets/icons/*"],
"@base/constants/*": ["./packages/Base/src/constants/*"]
}
},
"include": ["./packages/*/src"],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}