UNPKG

@chustasoft/cs-common

Version:

Common utilities for JavaScript projects equivalents to ChustaSoft CommonNET project

13 lines (11 loc) 286 B
/** * 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' });