forked from reach/reach-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
56 lines (56 loc) · 2.05 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
{
"include": ["packages", "types", "scripts"],
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"baseUrl": ".",
"emitDecoratorMetadata": false,
"esModuleInterop": true,
"experimentalDecorators": false,
"importHelpers": true,
"jsx": "react",
"lib": ["dom", "esnext"],
"moduleResolution": "node",
"noFallthroughCasesInSwitch": false,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"pretty": true,
"sourceMap": true,
"strict": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"stripInternal": true,
"target": "es5",
"typeRoots": ["./node_modules/@types", "./types"],
"paths": {
"@reach/accordion": ["packages/accordion/src"],
"@reach/alert": ["packages/alert/src"],
"@reach/alert-dialog": ["packages/alert-dialog/src"],
"@reach/auto-id": ["packages/auto-id/src"],
"@reach/checkbox": ["packages/checkbox/src"],
"@reach/combobox": ["packages/combobox/src"],
"@reach/component-component": ["packages/component-component/src"],
"@reach/descendants": ["packages/descendants/src"],
"@reach/dialog": ["packages/dialog/src"],
"@reach/disclosure": ["packages/disclosure/src"],
"@reach/listbox": ["packages/listbox/src"],
"@reach/machine": ["packages/machine/src"],
"@reach/menu-button": ["packages/menu-button/src"],
"@reach/popover": ["packages/popover/src"],
"@reach/portal": ["packages/portal/src"],
"@reach/rect": ["packages/rect/src"],
"@reach/skip-nav": ["packages/skip-nav/src"],
"@reach/slider": ["packages/slider/src"],
"@reach/tabs": ["packages/tabs/src"],
"@reach/tooltip": ["packages/tooltip/src"],
"@reach/utils": ["packages/utils/src"],
"@reach/visually-hidden": ["packages/visually-hidden/src"],
"@reach/window-size": ["packages/window-size/src"],
"$test/*": ["test/*"]
}
}
}