Answers for "import js file in typescript"

0

import js file in typescript

// Add to tsconfig.json:
{
  "compilerOptions": {
      ...
      "allowJs": true
      ...
  }
}
  
import MyModule from './../pages/MyModule';
Posted by: Guest on April-27-2021

Code answers related to "import js file in typescript"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language