Skip to content

Stats

js
class Stats {
  constructor(compilation) {
    this.entries = compilation.entries
    this.modules = compilation.modules
  }

  toJson() {
    return this
  }
}

module.exports = Stats
class Stats {
  constructor(compilation) {
    this.entries = compilation.entries
    this.modules = compilation.modules
  }

  toJson() {
    return this
  }
}

module.exports = Stats