While utilizing JetBrains ReSharper Ultimate 2018.3.4 and executing the command
Import 'class '' declared in external module ''' and all other types
, it defaults to using require
for import statements. However, I would prefer it to utilize from
as Visual Studio typically does. Is there a way to enable this setting?
Code output from ReSharper:
import Requests = require("../../../requests");
import ApiPaths = Requests.ApiPaths;
https://i.sstatic.net/A7wh1.png
Code output from standard Visual Studio 2017 Professional:
import { ApiPaths } from '../../../requests';