UNPKG

332 BJavaScriptView Raw
1const stiks = require('../dist');
2
3/**
4 * TS-Node
5 * Helper file to setup ts-node for testing.
6 * @see https://github.com/TypeStrong/ts-node#configuration-options
7 */
8
9// Options
10const options = {
11 project: './src/tsconfig.spec.json',
12 ignoreWarnings: true,
13 disableWarnings: true,
14 fast: true
15};
16
17stiks.tsnodeRegister(options);
\No newline at end of file