-
Notifications
You must be signed in to change notification settings - Fork 23
/
tsconfig.json
99 lines (99 loc) · 1.8 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
{
"files": [],
"exclude": ["node_modules"],
"references": [
{
"path": "exercise/01-routing"
},
{
"path": "exercise/02-data-loading"
},
{
"path": "exercise/03-dynamic-params"
},
{
"path": "exercise/04-nested-routing"
},
{
"path": "exercise/05-mutations"
},
{
"path": "exercise/06-progressive-enhancement"
},
{
"path": "exercise/07-multiple-forms"
},
{
"path": "exercise/08-errors"
},
{
"path": "exercise/09-env-vars"
},
{
"path": "exercise/10-admin-user"
},
{
"path": "final/01-routing"
},
{
"path": "final/02-data-loading"
},
{
"path": "final/02-data-loading.extra-01-ts"
},
{
"path": "final/02-data-loading.extra-02-prisma"
},
{
"path": "final/02-data-loading.extra-03-optimize"
},
{
"path": "final/03-dynamic-params"
},
{
"path": "final/03-dynamic-params.extra-01-marked"
},
{
"path": "final/03-dynamic-params.extra-02-ts"
},
{
"path": "final/04-nested-routing"
},
{
"path": "final/05-mutations"
},
{
"path": "final/05-mutations.extra-01-errors"
},
{
"path": "final/05-mutations.extra-02-ts"
},
{
"path": "final/06-progressive-enhancement"
},
{
"path": "final/06-progressive-enhancement.extra-01-prefetch"
},
{
"path": "final/07-multiple-forms"
},
{
"path": "final/08-errors"
},
{
"path": "final/08-errors.extra-01-catch-boundaries"
},
{
"path": "final/09-env-vars"
},
{
"path": "final/09-env-vars.extra-01-ts"
},
{
"path": "final/10-admin-user"
},
{
"path": "final/10-admin-user.extra-01-ui"
}
]
}