I would like to make a tool to replace imports of old style to imports of new style: ``` // before import dsa = require('data/search/account'); // after import * as dsa from 'data/search/account'; ``` is it possible to do via public compiler api? if so, can anyone outline the steps?