Issues (5)

webpack.config.js (1 issue)

Severity
1
const path = require('path');
0 ignored issues
show
The constant path seems to be never used. Consider removing it.
Loading history...
2
3
module.exports = {
4
    output: {
5
        library:"Virama",
6
        libraryTarget:"var"
7
    },
8
    resolve: {
9
        extensions: []
10
    },
11
    module: {
12
        rules: []
13
    },
14
    plugins: []
15
  };