1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-10-16 12:07:27 +00:00
pds-2021-g2-nest/config-overrides.js

17 lines
No EOL
630 B
JavaScript

const path = require('path');
module.exports = {
paths: (paths, env) => {
paths.appIndexJs = path.resolve(__dirname, 'nest_frontend/index.js');
paths.appSrc = path.resolve(__dirname, 'nest_frontend');
return paths;
},
jest: (config) => {
config.roots = config.roots.map(root => root.replace("src", "nest_frontend"))
config.collectCoverageFrom = config.collectCoverageFrom.map(root => root.replace("src", "nest_frontend"))
config.testMatch = config.testMatch.map(root => root.replace("src", "nest_frontend"))
console.debug(config)
return config;
}
}