forked from ariakit/ariakit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
45 lines (38 loc) · 1.55 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
{
"compilerOptions": {
"baseUrl": ".",
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"jsx": "react",
"lib": ["dom"],
"strict": true,
"strictFunctionTypes": false,
"declaration": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"stripInternal": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"paths": {
"reakit": ["./node_modules/reakit/src"],
"reakit/*": ["./node_modules/reakit/src/*"],
"reakit-playground": ["./node_modules/reakit-playground/src"],
"reakit-playground/*": ["./node_modules/reakit-playground/src/*"],
"reakit-system": ["./node_modules/reakit-system/src"],
"reakit-system/*": ["./node_modules/reakit-system/src/*"],
"reakit-system-palette": ["./node_modules/reakit-system-palette/src"],
"reakit-system-palette/*": ["./node_modules/reakit-system-palette/src/*"],
"reakit-system-bootstrap": ["./node_modules/reakit-system-bootstrap/src"],
"reakit-system-bootstrap/*": ["./node_modules/reakit-system-bootstrap/src/*"],
"reakit-test-utils": ["./node_modules/reakit-test-utils/src"],
"reakit-test-utils/*": ["./node_modules/reakit-test-utils/src/*"],
"reakit-utils": ["./node_modules/reakit-utils/src"],
"reakit-utils/*": ["./node_modules/reakit-utils/src/*"],
"reakit-warning": ["./node_modules/reakit-warning/src"],
"reakit-warning/*": ["./node_modules/reakit-warning/src/*"]
}
}
}