forked from microsoft/fluentui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.v8.json
64 lines (63 loc) · 3.78 KB
/
tsconfig.base.v8.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
{
"compilerOptions": {
"moduleResolution": "Node",
"pretty": true,
"sourceMap": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"strictNullChecks": true,
"noImplicitAny": true,
"typeRoots": ["node_modules/@types", "./typings"],
"rootDir": ".",
"baseUrl": ".",
"paths": {
"@fluentui/react-portal-compat-context": ["packages/react-components/react-portal-compat-context/src/index.ts"],
"@fluentui/api-docs": ["packages/api-docs/src/index.ts"],
"@fluentui/azure-themes": ["packages/azure-themes/src/index.ts"],
"@fluentui/codemods": ["packages/codemods/src/index.ts"],
"@fluentui/date-time-utilities": ["packages/date-time-utilities/src/index.ts"],
"@fluentui/example-data": ["packages/example-data/src/index.ts"],
"@fluentui/fluent2-theme": ["packages/fluent2-theme/src/index.ts"],
"@fluentui/font-icons-mdl2": ["packages/font-icons-mdl2/src/index.ts"],
"@fluentui/foundation-legacy": ["packages/foundation-legacy/src/index.ts"],
"@fluentui/jest-serializer-merge-styles": ["packages/jest-serializer-merge-styles/src/index.ts"],
"@fluentui/merge-styles": ["packages/merge-styles/src/index.ts"],
"@fluentui/react": ["packages/react/src/index.ts"],
"@fluentui/react/lib/*": ["packages/react/src/*"],
"@fluentui/react-date-time": ["packages/react-date-time/src/index.ts"],
"@fluentui/react-experiments": ["packages/react-experiments/src/index.ts"],
"@fluentui/react-experiments/lib/*": ["packages/react-experiments/src/*"],
"@fluentui/react-file-type-icons": ["packages/react-file-type-icons/src/index.ts"],
"@fluentui/react-focus": ["packages/react-focus/src/index.ts"],
"@fluentui/react-hooks": ["packages/react-hooks/src/index.ts"],
"@fluentui/scheme-utilities": ["packages/scheme-utilities/src/index.ts"],
"@fluentui/set-version": ["packages/set-version/src/index.ts"],
"@fluentui/style-utilities": ["packages/style-utilities/src/index.ts"],
"@fluentui/test-utilities": ["packages/test-utilities/src/index.ts"],
"@fluentui/theme-samples": ["packages/theme-samples/src/index.ts"],
"@fluentui/utilities": ["packages/utilities/src/index.ts"],
"@fluentui/webpack-utilities": ["packages/utilities/src/index.ts"],
"@fluentui/dom-utilities": ["packages/dom-utilities/src/index.ts"],
"@fluentui/theme": ["packages/theme/src/index.ts"],
"@fluentui/react-cards": ["packages/react-cards/src/index.ts"],
"@fluentui/react-charting": ["packages/react-charting/src/index.ts"],
"@fluentui/react-window-provider": ["packages/react-window-provider/src/index.ts"],
"@fluentui/react-icons-mdl2": ["packages/react-icons-mdl2/src/index.ts"],
"@fluentui/react-icons-mdl2-branded": ["packages/react-icons-mdl2-branded/src/index.ts"],
"@fluentui/react-icon-provider": ["packages/react-icon-provider/src/index.ts"],
"@fluentui/react-examples": ["packages/react-examples/src/index.ts"],
"@fluentui/react-examples/lib/*": ["packages/react-examples/src/*"],
"@fluentui/public-docsite-setup": ["packages/public-docsite-setup/src/index.ts"],
"@fluentui/react-docsite-components": ["packages/react-docsite-components/src/index.ts"],
"@fluentui/react-docsite-components/lib/index2": ["packages/react-docsite-components/src/index2.ts"],
"@fluentui/monaco-editor": [
"packages/monaco-editor/esm/vs/editor/editor.api.d.ts",
"packages/monaco-editor/src/monacoBundle.ts"
],
"@fluentui/monaco-editor/esm/*": ["packages/monaco-editor/esm/"],
"@fluentui/monaco-editor/lib/*": ["packages/monaco-editor/src/*"],
"@fluentui/react-monaco-editor": ["packages/react-monaco-editor/src/index.ts"],
"@fluentui/storybook": ["packages/storybook/src/index.ts"]
}
}
}