-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
129 lines (129 loc) · 5.97 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
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"sourceMap": true,
"jsx": "react"
},
"files": [
"./js/ActionCreators/CommonActionCreators.ts",
"./js/Actions/ActionBase.ts",
"./js/Actions/AppLoadedAction.ts",
"./js/Actions/AuthActions.ts",
"./js/Actions/CreateWorkoutPlanAction.ts",
"./js/Actions/CreateWorkoutPlanFailAction.ts",
"./js/Actions/CreateWorkoutPlanSuccessAction.ts",
"./js/Actions/IAction.ts",
"./js/Actions/ProcessRequestWorkoutFailedAction.ts",
"./js/Actions/ProcessWorkoutStartedAction.ts",
"./js/Actions/ProcessWorkoutStartFailedAction.ts",
"./js/Actions/ReceiveWorkoutAction.ts",
"./js/Actions/ReceiveWorkoutPlanAction.ts",
"./js/Actions/ReceiveWorkoutPlanFailAction.ts",
"./js/Actions/ReceiveWorkoutPlansAction.ts",
"./js/Actions/ReceiveWorkoutPlansFailAction.ts",
"./js/Actions/RequestWorkoutAction.ts",
"./js/Actions/RequestWorkoutPlanAction.ts",
"./js/Actions/RequestWorkoutPlansAction.ts",
"./js/Actions/ResponseActionBase.ts",
"./js/Actions/SayHelloAction.ts",
"./js/Actions/StartWorkoutAction.ts",
"./js/Actions/WorkoutPlanActions.ts",
"./js/AudioPlayer/AudioPlayer.ts",
"./js/AudioPlayer/SpeechSynthesiser.ts",
"./js/BackendApi/__tests__/GoogleApi-test.ts",
"./js/BackendApi/__tests__/MockHttpClient.ts",
"./js/BackendApi/__tests__/RoboCoachDb-test.ts",
"./js/BackendApi/GoogleApi.ts",
"./js/BackendApi/HttpClient.ts",
"./js/BackendApi/IHttpClient.d.ts",
"./js/BackendApi/RoboCoachDb.ts",
"./js/Components/NotFoundPage/INotFoundPageState.ts",
"./js/Dispatcher/Dispatcher.ts",
"./js/Errors/IRoboCoachError.d.ts",
"./js/Errors/RoboCoachDbError.ts",
"./js/Errors/RoboCoachError.ts",
"./js/Errors/RoboCoachFirebaseConverterError.ts",
"./js/IRoboCoachConfig.d.ts",
"./js/Log/ActionLogEntry.ts",
"./js/Log/ActionLogger.ts",
"./js/Models/__tests__/Notifications-test.ts",
"./js/Models/__tests__/Workout-test.ts",
"./js/Models/Firebase/__tests__/AggregateConverter-test.ts",
"./js/Models/Firebase/__tests__/WorkoutConverter-test.ts",
"./js/Models/Firebase/__tests__/WorkoutPlanConverter-test.ts",
"./js/Models/Firebase/AggregateConverter.ts",
"./js/Models/Firebase/IFirebaseExercise.d.ts",
"./js/Models/Firebase/IFirebaseWorkout.d.ts",
"./js/Models/Firebase/IFirebaseWorkoutAction.d.ts",
"./js/Models/Firebase/IFirebaseWorkoutPlan.d.ts",
"./js/Models/Firebase/IModelConverter.d.ts",
"./js/Models/Firebase/WorkoutActionConverter.ts",
"./js/Models/Firebase/WorkoutConverter.ts",
"./js/Models/Firebase/WorkoutPlanConverter.ts",
"./js/Models/Google/IPageInfo.d.ts",
"./js/Models/Google/IResponse.d.ts",
"./js/Models/Google/IVideo.d.ts",
"./js/Models/Google/IVideoListResponse.ts",
"./js/Models/IExcercise.d.ts",
"./js/Models/IExcercisePlanAction.d.ts",
"./js/Models/IFirebaseAuthData.d.ts",
"./js/Models/IRestPlanAction.d.ts",
"./js/Models/IUser.d.ts",
"./js/Models/IWorkout.d.ts",
"./js/Models/IWorkoutPlan.d.ts",
"./js/Models/IWorkoutPlanAction.d.ts",
"./js/Models/Notifications/ExerciseEndNotificationScenario.ts",
"./js/Models/Notifications/ExerciseStartNotificationScenario.ts",
"./js/Models/Notifications/INotification.d.ts",
"./js/Models/Notifications/INotificationScenario.d.ts",
"./js/Models/Notifications/NotificationsBuilder.ts",
"./js/Models/Notifications/NotificationsPlayer.ts",
"./js/Models/Notifications/PrepareToExerciseNotificationScenario.ts",
"./js/Models/Notifications/SoundAndTextNotification.ts",
"./js/Models/Notifications/SoundNotification.ts",
"./js/Models/Workout.ts",
"./js/Models/WorkoutPlan.ts",
"./js/Models/WorkoutStatus.ts",
"./js/SleepPreventer/SleepPreventer.ts",
"./js/Stores/BaseStore.ts",
"./js/Stores/CommonStore.ts",
"./js/Stores/UserStore.ts",
"./js/Stores/WorkoutPlansStore.ts",
"./js/Stores/WorkoutStore.ts",
"./js/Utils.ts",
"./js/App.tsx",
"./js/Components/AsyncDataComponent/AsyncDataComponent.tsx",
"./js/Components/ContentPage/__tests__/ContentPage-test.tsx",
"./js/Components/ContentPage/ContentBody/ContentBody.tsx",
"./js/Components/ContentPage/ContentHeader/ContentHeader.tsx",
"./js/Components/ContentPage/ContentPage.tsx",
"./js/Components/CreateWorkoutPlan/CreateWorkoutPlan.tsx",
"./js/Components/Duration/Duration.tsx",
"./js/Components/HelloWorld/HelloWorld.tsx",
"./js/Components/LoginPage/LoginPage.tsx",
"./js/Components/Navbar/Navbar.tsx",
"./js/Components/Navbar/NavbarLink/NavbarLink.tsx",
"./js/Components/NotFoundPage/NotFoundPage.tsx",
"./js/Components/WorkoutDetails/WorkoutDetails.tsx",
"./js/Components/WorkoutPage/WorkoutPage.tsx",
"./js/Components/WorkoutPlansPage/CreateWorkoutPlanForm/CreateWorkoutPlanForm.tsx",
"./js/Components/WorkoutPlansPage/EditWorkoutPlanForm/EditWorkoutPlanForm.tsx",
"./js/Components/WorkoutPlansPage/WorkoutPlan/WorkoutPlan.tsx",
"./js/Components/WorkoutPlansPage/WorkoutPlanDetails/WorkoutPlanDetails.tsx",
"./js/Components/WorkoutPlansPage/WorkoutPlanForm/WorkoutPlanForm.tsx",
"./js/Components/WorkoutPlansPage/WorkoutPlansPage.tsx",
"./js/Components/WorkoutPlayer/WorkoutPlayer.tsx",
"./js/Components/YoutubeVideoPlayer/YoutubeVideoPlayer.tsx",
"./js/Index.tsx",
"./typings/tsd.d.ts"
],
"filesGlob": [
"./js/**/*.ts",
"./js/**/*.tsx",
"./typings/tsd.d.ts"
],
"atom": {
"rewriteTsconfig": true
}
}