mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-26 10:08:06 +02:00
Note that the new version of `eslint-plugin-import` contains support for ESLint 9. Moreover, the new version of Babel removed the leading space for import comments (see https://github.com/babel/babel/pull/16780), so we update the corresponding test expectation to match this. Fixes a part of #17928.
4 lines
162 B
JavaScript
4 lines
162 B
JavaScript
import { Test } from "import-name";
|
|
import { Test2 } from './non-alias';
|
|
export { Test3 } from "import-name";
|
|
await import(/*webpackIgnore: true*/"./non-alias");
|