parcel-plugin-typescript
                                
                                
                                
                                    parcel-plugin-typescript copied to clipboard
                            
                            
                            
                        No typescript errors found with first execution
// debug: bundle.on('buildStart', callback) {
// no errors found here!!!
} // debug: async function runBundle()
// watch is enabled...
// innocent change that keeps the error in the code...
🚨  /home/davidm/src/todocoleccion/assets/javascripts/src/panel/popover_mensajes_consultas.ts(6,26)
Cannot find name 'asdfasdfadfa'.
    5 | // Aquà se iran apuntando los que esten siendo cargados, para evitar una doble peticion ajax.
  > 6 | var loadingPopovers = {};asdfasdfadfa
      |                          ^^^^^^^^^^^^
    7 | 
🚨  /home/davidm/src/todocoleccion/assets/javascripts/src/panel/popover_mensajes_consultas.ts(6,26)
Cannot find name 'asdfasdfadfa'.
    5 | // Aquà se iran apuntando los que esten siendo cargados, para evitar una doble peticion ajax.
  > 6 | var loadingPopovers = {};asdfasdfadfa
      |                          ^^^^^^^^^^^^
    7 | 
bundle.on('buildStart', callback) & bundle.on('buildEnd', callback) were executed before the errors were found. I need to inform the programmer that the transpilation has finished without errors.
I think bundle.on('buildEnd', callback) should be executed after showing errors.
I've also encountered this.