<!DOCTYPE html>
<html>

  <head>
    <link rel="stylesheet" href="style.css">
  </head>

  <body>
    <script type="module" src="./script.js"></script>
    <script type="module">
      import { resolvers } from './script.js';
      document.body.appendChild(
        document.createTextNode(JSON.stringify(resolvers))
      );
    </script>
  </body>

</html>
export const resolvers = {};
resolvers.value1 = 'value';
resolvers.value2 = 'value';
/* Styles go here */