-
Notifications
You must be signed in to change notification settings - Fork 14
/
tsconfig.json
68 lines (68 loc) · 1.56 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/01.principles/01.problem.intentions"
},
{
"path": "exercises/01.principles/01.solution.intentions"
},
{
"path": "exercises/01.principles/02.problem.implementation-details"
},
{
"path": "exercises/01.principles/02.solution.implementation-details"
},
{
"path": "exercises/02.test-structure/01.problem.assertions",
},
{
"path": "exercises/02.test-structure/01.solution.assertions",
},
{
"path": "exercises/02.test-structure/02.problem.test-blocks",
},
{
"path": "exercises/02.test-structure/02.solution.test-blocks",
},
{
"path": "exercises/02.test-structure/03.problem.test-files",
},
{
"path": "exercises/02.test-structure/03.solution.test-files",
},
{
"path": "exercises/02.test-structure/04.problem.hooks",
},
{
"path": "exercises/02.test-structure/04.solution.hooks",
},
{
"path": "exercises/03.async/01.problem.await",
},
{
"path": "exercises/03.async/01.solution.await",
},
{
"path": "exercises/03.async/02.problem.rejections",
},
{
"path": "exercises/03.async/02.solution.rejections",
},
{
"path": "exercises/03.async/03.problem.waitFor",
},
{
"path": "exercises/03.async/03.solution.waitFor",
},
{
"path": "exercises/04.vitest/01.problem.using-vitest"
},
{
"path": "exercises/04.vitest/01.solution.using-vitest"
}
]
}