2
0

shim-fs.js 163 B

1234567
  1. // @ts-check
  2. export default {
  3. existsSync: () => false,
  4. readFileSync: () => {
  5. throw new Error('fs.readFileSync is not supported in browser builds.')
  6. },
  7. }