codekie/openapi-examples-validator

View on GitHub
webpack/constants.babel.js

Summary

Maintainability
A
0 mins
Test Coverage
// WEBPACK BUILD CONSTANTS
const JS_REGEX = /\.js$|\.jsx$|\.es6$|\.babel$/;
const EXCLUDE_REGEX = /node_modules/;
const PROJECT_ROOT = __dirname + '/../';

module.exports = {
    JS_REGEX,
    EXCLUDE_REGEX,
    PROJECT_ROOT
};