tsrun/ts/plugins.ts
2023-07-13 01:33:17 +02:00

16 lines
272 B
TypeScript

// node native
import * as path from 'path';
import * as url from 'url';
export { path, url };
// @pushrocks scope
import * as smartshell from '@push.rocks/smartshell';
export { smartshell };
// third party scope
import * as tsNode from 'ts-node';
export { tsNode };