-
Notifications
You must be signed in to change notification settings - Fork 0
/
monorepo.config.js
37 lines (27 loc) · 1021 Bytes
/
monorepo.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
const { default: createPresetConfig, codeExtensions } = require('@pshaw/monorepo-config');
const workspaces = require('./package.json').workspaces;
const pshawConfig = createPresetConfig(__dirname, workspaces);
module.exports.workspaces = workspaces;
module.exports.codeExtensions = codeExtensions;
module.exports.extra = {
flMode: 'sbfl',
};
module.exports.extraBuildIgnoreGlobs = pshawConfig.extraBuildIgnoreGlobs;
module.exports.extraFormatIgnoreGlobs = [...pshawConfig.extraFormatIgnoreGlobs];
module.exports.extraBuildArtifactGlobs = pshawConfig.extraBuildArtifactGlobs;
module.exports.extraTestIgnoreGlobs = [...pshawConfig.extraTestIgnoreGlobs];
module.exports.serve = {
servers: {
servers: [
{
input: './packages/faultjs/javascript/benchmark/src/frontend/index.tsx',
},
{
input: './packages/patrick-shaw/javascript/my-resume/src/index.tsx',
},
{
input: './packages/misc/javascript/page-breaker-chrome/src/index.tsx',
},
],
},
};