-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathtsconfig.json
More file actions
104 lines (104 loc) · 2.51 KB
/
tsconfig.json
File metadata and controls
104 lines (104 loc) · 2.51 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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"files": [],
"exclude": [
"node_modules"
],
"references": [
{
"path": "exercises/02.functions/01.problem.mock-functions"
},
{
"path": "exercises/02.functions/01.solution.mock-functions"
},
{
"path": "exercises/02.functions/02.problem.spies"
},
{
"path": "exercises/02.functions/02.solution.spies"
},
{
"path": "exercises/02.functions/03.problem.mock-implementation"
},
{
"path": "exercises/02.functions/03.solution.mock-implementation"
},
{
"path": "exercises/03.date-and-time/01.problem.date-time"
},
{
"path": "exercises/03.date-and-time/01.solution.date-time"
},
{
"path": "exercises/03.date-and-time/02.problem.timers"
},
{
"path": "exercises/03.date-and-time/02.solution.timers"
},
{
"path": "exercises/03.date-and-time/03.problem.ticks-and-tasks"
},
{
"path": "exercises/03.date-and-time/03.solution.ticks-and-tasks"
},
{
"path": "exercises/04.globals/01.problem.global-methods"
},
{
"path": "exercises/04.globals/01.solution.global-methods"
},
{
"path": "exercises/04.globals/02.problem.global-values"
},
{
"path": "exercises/04.globals/02.solution.global-values"
},
{
"path": "exercises/04.globals/03.problem.environment-variables"
},
{
"path": "exercises/04.globals/03.solution.environment-variables"
},
{
"path": "exercises/05.network/01.problem.setup-msw"
},
{
"path": "exercises/05.network/01.solution.setup-msw"
},
{
"path": "exercises/05.network/02.problem.mock-responses"
},
{
"path": "exercises/05.network/02.solution.mock-responses"
},
{
"path": "exercises/05.network/03.problem.error-responses"
},
{
"path": "exercises/05.network/03.solution.error-responses"
},
{
"path": "exercises/05.network/04.problem.network-errors"
},
{
"path": "exercises/05.network/04.solution.network-errors"
},
{
"path": "exercises/05.network/05.problem.response-delay"
},
{
"path": "exercises/05.network/05.solution.response-delay"
},
{
"path": "exercises/06.modules/01.problem.dependency-injection"
},
{
"path": "exercises/06.modules/01.solution.dependency-injection"
},
{
"path": "exercises/06.modules/02.problem.private-side-effects"
},
{
"path": "exercises/06.modules/02.solution.private-side-effects"
}
]
}