mirror of
https://github.com/wkulhanek/bonob.git
synced 2025-12-21 17:33:29 +01:00
13 lines
286 B
JavaScript
13 lines
286 B
JavaScript
/**
|
|
* Overrides the tsconfig used for the app.
|
|
* In the test environment we need some tweaks.
|
|
*/
|
|
|
|
const tsNode = require('ts-node');
|
|
const testTSConfig = require('./tests/tsconfig.json');
|
|
|
|
tsNode.register({
|
|
files: true,
|
|
transpileOnly: true,
|
|
project: './tests/tsconfig.json'
|
|
}); |