UNPKG

561 BJavaScriptView Raw
1module.exports = function (wallaby) {
2 wallaby.defaults.files.instrument = false;
3 return {
4 "files": [
5 "src/lib/**/*.ts",
6 {
7 "pattern": "src/module/**/*.ts",
8 "instrument": true,
9 "load": true,
10 "ignore": false
11 }
12 ],
13 "tests": [
14 "src/spec/**/*.mocha.spec.ts"
15 ],
16 "env": {
17 "type": "node"
18 },
19 "workers": {
20 "recycle": true
21 },
22 "testFramework": "mocha"
23 }
24}
\No newline at end of file