/**
* Overrides the tsconfig used for the app.
* In the test environment we need some tweaks.
*/consttsNode = require('ts-node');
consttestTSConfig = require('./tests/tsconfig.json');
tsNode.register({
files: true,
transpileOnly: true,
project: './tests/tsconfig.json'
});