TypeScript Compile Arrêt d'utilisation requise

1. Add compiler option --module to target ES6 or later:
  tsc --module ES6
  
2. Create .tsconfig json file or add if the .tsconfig file exists:
  "module": "ES6"
  
Wizard Nook