-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathtsconfig.json
168 lines (168 loc) · 4.05 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
{
"files": [],
"exclude": ["node_modules"],
"references": [
{
"path": "exercises/01.e2e/01.problem.playwright"
},
{
"path": "exercises/01.e2e/01.solution.playwright"
},
{
"path": "exercises/01.e2e/02.problem.insert-user"
},
{
"path": "exercises/01.e2e/02.solution.insert-user"
},
{
"path": "exercises/01.e2e/03.problem.cleanup"
},
{
"path": "exercises/01.e2e/03.solution.cleanup"
},
{
"path": "exercises/01.e2e/04.problem.fixtures"
},
{
"path": "exercises/01.e2e/04.solution.fixtures"
},
{
"path": "exercises/02.e2e-mocking/01.problem.write-email"
},
{
"path": "exercises/02.e2e-mocking/01.solution.write-email"
},
{
"path": "exercises/02.e2e-mocking/02.problem.read-email"
},
{
"path": "exercises/02.e2e-mocking/02.solution.read-email"
},
{
"path": "exercises/03.authenticated-e2e/01.problem.login"
},
{
"path": "exercises/03.authenticated-e2e/01.solution.login"
},
{
"path": "exercises/04.unit-test/01.problem.init"
},
{
"path": "exercises/04.unit-test/01.solution.init"
},
{
"path": "exercises/04.unit-test/02.problem.spies"
},
{
"path": "exercises/04.unit-test/02.solution.spies"
},
{
"path": "exercises/04.unit-test/03.problem.hooks"
},
{
"path": "exercises/04.unit-test/03.solution.hooks"
},
{
"path": "exercises/04.unit-test/04.problem.setup"
},
{
"path": "exercises/04.unit-test/04.solution.setup"
},
{
"path": "exercises/05.component-test/01.problem.init"
},
{
"path": "exercises/05.component-test/01.solution.init"
},
{
"path": "exercises/05.component-test/02.problem.cleanup"
},
{
"path": "exercises/05.component-test/02.solution.cleanup"
},
{
"path": "exercises/06.hooks/01.problem.render-hook"
},
{
"path": "exercises/06.hooks/01.solution.render-hook"
},
{
"path": "exercises/06.hooks/02.problem.test-component"
},
{
"path": "exercises/06.hooks/02.solution.test-component"
},
{
"path": "exercises/07.remix-component/01.problem.stub-remix"
},
{
"path": "exercises/07.remix-component/01.solution.stub-remix"
},
{
"path": "exercises/07.remix-component/02.problem.multiple-routes"
},
{
"path": "exercises/07.remix-component/02.solution.multiple-routes"
},
{
"path": "exercises/08.http-mocking/01.problem.start-server"
},
{
"path": "exercises/08.http-mocking/01.solution.start-server"
},
{
"path": "exercises/08.http-mocking/02.problem.override-mocks"
},
{
"path": "exercises/08.http-mocking/02.solution.override-mocks"
},
{
"path": "exercises/08.http-mocking/03.problem.setup"
},
{
"path": "exercises/08.http-mocking/03.solution.setup"
},
{
"path": "exercises/09.authenticated-integration/01.problem.create-session"
},
{
"path": "exercises/09.authenticated-integration/01.solution.create-session"
},
{
"path": "exercises/09.authenticated-integration/02.problem.assert"
},
{
"path": "exercises/09.authenticated-integration/02.solution.assert"
},
{
"path": "exercises/09.authenticated-integration/03.problem.routes"
},
{
"path": "exercises/09.authenticated-integration/03.solution.routes"
},
{
"path": "exercises/10.custom-assertions/01.problem.location"
},
{
"path": "exercises/10.custom-assertions/01.solution.location"
},
{
"path": "exercises/11.test-db/01.problem.setup"
},
{
"path": "exercises/11.test-db/01.solution.setup"
},
{
"path": "exercises/11.test-db/02.problem.isolated-db"
},
{
"path": "exercises/11.test-db/02.solution.isolated-db"
},
{
"path": "exercises/11.test-db/03.problem.global-setup"
},
{
"path": "exercises/11.test-db/03.solution.global-setup"
}
]
}