-
Notifications
You must be signed in to change notification settings - Fork 669
/
Copy pathtsconfig.json
68 lines (68 loc) · 1.53 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
64
65
66
67
68
{
"files": [],
"exclude": [
"node_modules"
],
"references": [
{
"path": "exercises/04.code-splitting/01.problem.lazy"
},
{
"path": "exercises/04.code-splitting/01.solution.lazy"
},
{
"path": "exercises/04.code-splitting/02.problem.eager"
},
{
"path": "exercises/04.code-splitting/02.solution.eager"
},
{
"path": "exercises/04.code-splitting/03.problem.transition"
},
{
"path": "exercises/04.code-splitting/03.solution.transition"
},
{
"path": "exercises/05.calculations/01.problem.use-memo"
},
{
"path": "exercises/05.calculations/01.solution.use-memo"
},
{
"path": "exercises/05.calculations/02.problem.worker"
},
{
"path": "exercises/05.calculations/02.solution.worker"
},
{
"path": "exercises/05.calculations/03.problem.async"
},
{
"path": "exercises/05.calculations/03.solution.async"
},
{
"path": "exercises/06.rerenders/01.problem.memo"
},
{
"path": "exercises/06.rerenders/01.solution.memo"
},
{
"path": "exercises/06.rerenders/02.problem.comparator"
},
{
"path": "exercises/06.rerenders/02.solution.comparator"
},
{
"path": "exercises/06.rerenders/03.problem.primitives"
},
{
"path": "exercises/06.rerenders/03.solution.primitives"
},
{
"path": "exercises/07.windowing/01.problem.virtualizer"
},
{
"path": "exercises/07.windowing/01.solution.virtualizer"
}
]
}