cstefanache / angular2-img-cropper

Angular 2 Image Cropper
MIT License
364 stars 135 forks source link

Upgrade to TypeScript 2.5.3 and white screen of death #284

Open apizzoni opened 6 years ago

apizzoni commented 6 years ago

Using the official plunker with typescript 2.5.3 and last version of component 0.9.0. Makes the component not working without any error.

what wrong?

apizzoni commented 6 years ago

After hours of investigation, I managed it to work adding "meta" information in config.js like this:

System.config({
  //use typescript for compilation
  transpiler: 'typescript',
  //typescript compiler options
  typescriptOptions: {
    emitDecoratorMetadata: true
  },
  meta: {
      'typescript': {
        "exports": "ts"
      }
    },
  paths: {
    'npm:': 'https://unpkg.com/'
  },