Answers for "typescript compile stop using required"

0

typescript compile stop using required

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"
Posted by: Guest on February-21-2022

Code answers related to "typescript compile stop using required"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language