Open natelindev opened 2 years ago
nodejs added a new syntax: https://nodejs.org/api/esm.html#import-assertions would be helpful if this extension can support it:
import fooData from './foo.json' assert { type: 'json' }; const { default: barData } = await import('./bar.json', { assert: { type: 'json' } });
@natelindev There is another plugin JS/TS Import/Export Sorter which supports it.
nodejs added a new syntax: https://nodejs.org/api/esm.html#import-assertions would be helpful if this extension can support it: