1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  | REM Remove all Javascript files from app dev folders (DO NOT touch e2elib as does not belong to us) 
 |  REM Motivation - sometimes we rename ts files but import statements still refering to old Javascript names so we want to catch those situation 
 |  cd libappbase 
 |  del /s /q *.js 
 |    
 |  cd ../libappsop 
 |  del /s /q *.js 
 |    
 |  cd ../libmp 
 |  del /s /q *.js 
 |    
 |  cd ../scripts 
 |  del /s /q *.js 
 |    
 |  REM Switch back working directory to e2e else subsequent statement won't work 
 |  cd ../ 
 |    
 |  REM Run compile TSC 
 |  e2e run tsc 
 |  
  |