| 144 | } |
| 145 | |
| 146 | export interface BuildOptions { |
| 147 | isDev: boolean; |
| 148 | isReleaseBuild: boolean; |
| 149 | rootDir: string; |
| 150 | distIntegrationDir: string; |
| 151 | distLibDir: string; |
| 152 | distLibDebugDir: string; |
| 153 | distServicesDir: string; |
| 154 | distReactDir: string; |
| 155 | distUtilsDir: string; |
| 156 | srcDir: string; |
| 157 | srcIntegrationDir: string; |
| 158 | srcServicesDir: string; |
| 159 | srcLibDir: string; |
| 160 | srcReactDir: string; |
| 161 | srcUtilsDir: string; |
| 162 | testsDir: string; |
| 163 | testsVideosDir: string; |
| 164 | tscDir: string; |
| 165 | tscIntegrationDir: string; |
| 166 | tscServicesDir: string; |
| 167 | tscLibDir: string; |
| 168 | tscReactDir: string; |
| 169 | tscUtilsDir: string; |
| 170 | packageJson: PackageJson; |
| 171 | } |
| 172 | |
| 173 | export interface PackageJson { |
| 174 | version: string; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…