-
Notifications
You must be signed in to change notification settings - Fork 58
/
tsconfig.json
63 lines (63 loc) · 1.09 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
57
58
59
60
61
62
63
{
"files": [],
"exclude": ["node_modules"],
"references": [
{
"path": "exercise/01-non-nav-mutations"
},
{
"path": "exercise/02-optimistic-ui"
},
{
"path": "exercise/03-focus-management"
},
{
"path": "exercise/04-revalidation-optimization"
},
{
"path": "exercise/05-non-nav-fetching"
},
{
"path": "exercise/06-imperative-mutations"
},
{
"path": "exercise/07-pending-ui"
},
{
"path": "exercise/08-skeletons"
},
{
"path": "exercise/09-defer"
},
{
"path": "final/01-non-nav-mutations"
},
{
"path": "final/02-optimistic-ui"
},
{
"path": "final/03-focus-management"
},
{
"path": "final/04-revalidation-optimization"
},
{
"path": "final/05-non-nav-fetching"
},
{
"path": "final/06-imperative-mutations"
},
{
"path": "final/07-pending-ui"
},
{
"path": "final/08-skeletons"
},
{
"path": "final/09-defer"
},
{
"path": "example/client-side-fetching"
}
]
}