Issues (148)

webpack.config.js (2 issues)

Severity
1
module.exports = {
2
  entry: [__dirname + "/src/index.js"],
0 ignored issues
show
Consider using the path module for constructing paths since they are otherwise not cross-OS compatible.
Loading history...
3
  output: {
4
    path: __dirname + "/dist",
0 ignored issues
show
Consider using the path module for constructing paths since they are otherwise not cross-OS compatible.
Loading history...
5
    library: 'GedcomX'
6
  }
7
};