forked from microsoft/fluentui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
45 lines (45 loc) · 1009 Bytes
/
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
{
"extends": "../../../scripts/typescript/tsconfig.fluentui",
"compilerOptions": {
"composite": true,
"outDir": "dist/dts",
"skipLibCheck": true,
"types": ["node", "jest", "@testing-library/jest-dom"],
"paths": {
"docs/*": ["packages/fluentui/docs/*"],
"src/*": ["packages/fluentui/react-northstar/src/*"],
"test/*": ["packages/fluentui/react-northstar/test/*"],
"@fluentui/a11y-testing": ["packages/a11y-testing/src/index"]
}
},
"include": ["src", "test"],
"references": [
{
"path": "../accessibility"
},
{
"path": "../../a11y-testing"
},
{
"path": "../styles"
},
{
"path": "../react-bindings"
},
{
"path": "../react-component-event-listener"
},
{
"path": "../react-component-nesting-registry"
},
{
"path": "../react-component-ref"
},
{
"path": "../react-northstar-styles-renderer"
},
{
"path": "../react-proptypes"
}
]
}