sparc
Version:
Bootstrap Electron with static views or socket connection to remote source such as Create React App.
17 lines (14 loc) • 316 B
JavaScript
const ts = require('ts-node');
/**
* TS-Node
* Helper file to setup ts-node for testing.
* @see https://github.com/TypeStrong/ts-node#configuration-options
*/
// Options
const options = {
project: './tsconfig.spec.json',
ignoreWarnings: true,
disableWarnings: true,
fast: true
};
ts.register(options);