You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This adds an option esm which if set to true changes the exports
to use ESM format
export default doc;
export const MyQuery = doc;
etc.
This allows usage with [node-esm-loader](npm.im/node-esm-loader)
```js
export default {
loaders: [
{
test: /\.(graphql|gql)$/,
use: [
{
loader: "graphql-tag/loader.js",
options: {
esm: true
}
}
]
},
],
};
```
0 commit comments