forked from microsoft/fluentui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
37 lines (37 loc) · 1.9 KB
/
tsconfig.base.json
File metadata and controls
37 lines (37 loc) · 1.9 KB
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
{
"compilerOptions": {
"target": "ES2015",
"module": "esnext",
"moduleResolution": "node",
"lib": ["ES2015", "dom"],
"sourceMap": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"typeRoots": ["node_modules/@types", "./typings"],
"baseUrl": ".",
"paths": {
"@fluentui/react-conformance": ["packages/react-conformance/src/index.ts"],
"@fluentui/react-context-selector": ["packages/react-context-selector/src/index.ts"],
"@fluentui/react-utilities": ["packages/react-utilities/src/index.ts"],
"@fluentui/react-make-styles": ["packages/react-make-styles/src/index.ts"],
"@fluentui/make-styles": ["packages/make-styles/src/index.ts"],
"@fluentui/react-popover": ["packages/react-popover/src/index.ts"],
"@fluentui/react-provider": ["packages/react-provider/src/index.ts"],
"@fluentui/react-theme": ["packages/react-theme/src/index.ts"],
"@fluentui/react-theme-provider": ["packages/react-theme-provider/src/index.ts"],
"@fluentui/keyboard-key": ["packages/keyboard-key/src/index.ts"],
"@fluentui/react-focus-management": ["packages/react-focus-management/src/index.ts"],
"@fluentui/react-tabster": ["packages/react-tabster/src/index.ts"],
"@fluentui/react-tooltip": ["packages/react-tooltip/src/index.ts"],
"@fluentui/react-positioning": ["packages/react-positioning/src/index.ts"],
"@fluentui/react-shared-contexts": ["packages/react-shared-contexts/src/index.ts"],
"@fluentui/react-menu": ["packages/react-menu/src/index.ts"],
"@fluentui/react-portal": ["packages/react-portal/src/index.ts"],
"@fluentui/react-storybook": ["packages/react-storybook/src/index.ts"],
"@fluentui/react-accordion": ["packages/react-accordion/src/index.ts"],
"@fluentui/react-aria": ["packages/react-aria/src/index.ts"]
}
},
"exclude": ["node_modules"]
}