Urara-Blog/node_modules/.pnpm-store/v3/files/3f/50d4260a121096d6abbb7515b01ed82674e78058baf7f5406ac03da5acd797ea10b18d6bcdd506f81be5bf81c7f523b1ce5a25e2c286504721eadcc2f7ff7e
2022-08-14 01:14:53 +08:00

13 lines
271 B
Text

import { declare } from "@babel/helper-plugin-utils";
export default declare(api => {
api.assertVersion(7);
return {
name: "syntax-import-assertions",
manipulateOptions(opts, parserOpts) {
parserOpts.plugins.push("importAssertions");
},
};
});