Closed victornoel closed 7 years ago
Hi,
I noticed that ./src/tsconfig.spec.json refers to ./tsconfig.json, so normally, to be complete, we should be doing something like that in wallaby.js:
./src/tsconfig.spec.json
./tsconfig.json
wallaby.js
var compilerOptions = require('./tsconfig.json').compilerOptions; Object.assign(compilerOptions, requir('./src/tsconfig.spec.json').compilerOptions);
(except maybe for the baseUrl property that may be wrong in that case…)
baseUrl
What do you think?
Makes perfect sense, I have changed wallaby config as per your suggestion.
Hi,
I noticed that
./src/tsconfig.spec.json
refers to./tsconfig.json
, so normally, to be complete, we should be doing something like that inwallaby.js
:(except maybe for the
baseUrl
property that may be wrong in that case…)What do you think?