2018-06-04 21:25:19 +00:00
|
|
|
import * as path from 'path';
|
2018-07-02 07:03:26 +00:00
|
|
|
import * as tsNode from 'ts-node';
|
2018-07-08 22:00:07 +00:00
|
|
|
import { CompilerOptions } from 'typescript';
|
2018-06-04 21:25:19 +00:00
|
|
|
|
2020-06-01 18:32:33 +00:00
|
|
|
const defaultTsNodeOptions: tsNode.CreateOptions = {
|
2019-04-30 10:33:07 +00:00
|
|
|
compilerOptions: {
|
|
|
|
lib: ['es2017'],
|
2019-04-08 14:17:57 +00:00
|
|
|
target: <any>'es2017', // Script Target should be a string -> 2 is for ES2015
|
2019-04-30 10:33:07 +00:00
|
|
|
experimentalDecorators: true,
|
2021-06-23 13:26:55 +00:00
|
|
|
esModuleInterop: true,
|
2019-04-30 10:33:07 +00:00
|
|
|
} as CompilerOptions,
|
2021-06-23 13:26:55 +00:00
|
|
|
skipIgnore: true,
|
2018-07-03 12:44:57 +00:00
|
|
|
};
|
2018-07-03 12:40:58 +00:00
|
|
|
|
2018-12-05 23:21:20 +00:00
|
|
|
if (process.argv.includes('--web')) {
|
|
|
|
const previousCompilerOptions = defaultTsNodeOptions.compilerOptions as CompilerOptions;
|
|
|
|
defaultTsNodeOptions.compilerOptions = {
|
|
|
|
...previousCompilerOptions,
|
2019-04-08 14:17:57 +00:00
|
|
|
lib: ['es2016', 'es2017', 'dom'],
|
2021-06-23 13:26:55 +00:00
|
|
|
target: <any>'es2017', // Script Target should be a string -> 2 is for ES2015
|
2019-03-02 22:03:05 +00:00
|
|
|
};
|
2018-12-05 23:21:20 +00:00
|
|
|
}
|
|
|
|
|
2018-07-03 12:40:58 +00:00
|
|
|
if (process.argv.includes('--nocache')) {
|
2019-03-02 21:38:01 +00:00
|
|
|
// currently caching is not used
|
2018-07-03 12:40:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tsNode.register(defaultTsNodeOptions);
|
2018-06-04 21:25:19 +00:00
|
|
|
|
2020-06-01 19:37:11 +00:00
|
|
|
export const runCli = async () => {
|
2018-06-25 08:23:15 +00:00
|
|
|
// contents of argv array
|
|
|
|
// process.argv[0] -> node Executable
|
|
|
|
// process.argv[1] -> tsrun executable
|
2018-07-03 12:44:57 +00:00
|
|
|
const pathToTsFile = process.argv[2];
|
|
|
|
|
2018-06-25 08:23:15 +00:00
|
|
|
const pathToLoad = path.join(process.cwd(), pathToTsFile);
|
2021-06-23 13:30:55 +00:00
|
|
|
console.log(process.argv);
|
|
|
|
process.argv.pop();
|
|
|
|
console.log(process.argv);
|
2018-06-05 21:40:59 +00:00
|
|
|
import(pathToLoad);
|
2020-06-01 19:38:19 +00:00
|
|
|
};
|