forked from microsoft/fluentui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
73 lines (73 loc) · 5.3 KB
/
tsconfig.base.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"compilerOptions": {
"rootDir": ".",
"target": "ES2019",
"module": "esnext",
"moduleResolution": "node",
"lib": ["ES2019", "dom"],
"sourceMap": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"pretty": true,
"typeRoots": ["node_modules/@types", "./typings"],
"baseUrl": ".",
"paths": {
"@fluentui/babel-preset-global-context": ["packages/react-components/babel-preset-global-context/src/index.ts"],
"@fluentui/global-context": ["packages/react-components/global-context/src/index.ts"],
"@fluentui/keyboard-key": ["packages/keyboard-key/src/index.ts"],
"@fluentui/keyboard-keys": ["packages/react-components/keyboard-keys/src/index.ts"],
"@fluentui/priority-overflow": ["packages/react-components/priority-overflow/src/index.ts"],
"@fluentui/react-accordion": ["packages/react-components/react-accordion/src/index.ts"],
"@fluentui/react-alert": ["packages/react-components/react-alert/src/index.ts"],
"@fluentui/react-aria": ["packages/react-components/react-aria/src/index.ts"],
"@fluentui/react-avatar": ["packages/react-components/react-avatar/src/index.ts"],
"@fluentui/react-badge": ["packages/react-components/react-badge/src/index.ts"],
"@fluentui/react-button": ["packages/react-components/react-button/src/index.ts"],
"@fluentui/react-card": ["packages/react-components/react-card/src/index.ts"],
"@fluentui/react-checkbox": ["packages/react-components/react-checkbox/src/index.ts"],
"@fluentui/react-combobox": ["packages/react-components/react-combobox/src/index.ts"],
"@fluentui/react-components": ["packages/react-components/react-components/src/index.ts"],
"@fluentui/react-conformance": ["packages/react-conformance/src/index.ts"],
"@fluentui/react-conformance-griffel": ["packages/react-components/react-conformance-griffel/src/index.ts"],
"@fluentui/react-context-selector": ["packages/react-components/react-context-selector/src/index.ts"],
"@fluentui/react-dialog": ["packages/react-components/react-dialog/src/index.ts"],
"@fluentui/react-divider": ["packages/react-components/react-divider/src/index.ts"],
"@fluentui/react-focus-management": ["packages/react-focus-management/src/index.ts"],
"@fluentui/react-image": ["packages/react-components/react-image/src/index.ts"],
"@fluentui/react-input": ["packages/react-components/react-input/src/index.ts"],
"@fluentui/react-label": ["packages/react-components/react-label/src/index.ts"],
"@fluentui/react-link": ["packages/react-components/react-link/src/index.ts"],
"@fluentui/react-list": ["packages/react-components/react-list/src/index.ts"],
"@fluentui/react-menu": ["packages/react-components/react-menu/src/index.ts"],
"@fluentui/react-overflow": ["packages/react-components/react-overflow/src/index.ts"],
"@fluentui/react-popover": ["packages/react-components/react-popover/src/index.ts"],
"@fluentui/react-portal": ["packages/react-components/react-portal/src/index.ts"],
"@fluentui/react-portal-compat": ["packages/react-components/react-portal-compat/src/index.ts"],
"@fluentui/react-portal-compat-context": ["packages/react-components/react-portal-compat-context/src/index.ts"],
"@fluentui/react-positioning": ["packages/react-components/react-positioning/src/index.ts"],
"@fluentui/react-provider": ["packages/react-components/react-provider/src/index.ts"],
"@fluentui/react-radio": ["packages/react-components/react-radio/src/index.ts"],
"@fluentui/react-select": ["packages/react-components/react-select/src/index.ts"],
"@fluentui/react-shared-contexts": ["packages/react-components/react-shared-contexts/src/index.ts"],
"@fluentui/react-slider": ["packages/react-components/react-slider/src/index.ts"],
"@fluentui/react-spinbutton": ["packages/react-components/react-spinbutton/src/index.ts"],
"@fluentui/react-spinner": ["packages/react-components/react-spinner/src/index.ts"],
"@fluentui/react-storybook": ["packages/react-components/react-storybook/src/index.ts"],
"@fluentui/react-storybook-addon": ["packages/react-components/react-storybook-addon/src/index.ts"],
"@fluentui/react-switch": ["packages/react-components/react-switch/src/index.ts"],
"@fluentui/react-table": ["packages/react-components/react-table/src/index.ts"],
"@fluentui/react-tabs": ["packages/react-components/react-tabs/src/index.ts"],
"@fluentui/react-tabster": ["packages/react-components/react-tabster/src/index.ts"],
"@fluentui/react-text": ["packages/react-components/react-text/src/index.ts"],
"@fluentui/react-textarea": ["packages/react-components/react-textarea/src/index.ts"],
"@fluentui/react-theme": ["packages/react-components/react-theme/src/index.ts"],
"@fluentui/react-theme-sass": ["packages/react-components/react-theme-sass/src/index.ts"],
"@fluentui/react-toolbar": ["packages/react-components/react-toolbar/src/index.ts"],
"@fluentui/react-tooltip": ["packages/react-components/react-tooltip/src/index.ts"],
"@fluentui/react-utilities": ["packages/react-components/react-utilities/src/index.ts"],
"@fluentui/theme-designer": ["packages/react-components/theme-designer/src/index.ts"]
}
},
"exclude": ["node_modules"]
}