tsrun/ts/plugins.ts

16 lines
272 B
TypeScript
Raw Permalink Normal View History

2022-03-12 20:52:14 +00:00
// node native
import * as path from 'path';
2022-03-12 20:59:14 +00:00
import * as url from 'url';
2022-03-12 20:52:14 +00:00
2022-10-12 15:21:03 +00:00
export { path, url };
2022-03-12 20:52:14 +00:00
2022-03-12 13:43:54 +00:00
// @pushrocks scope
2023-07-12 23:33:17 +00:00
import * as smartshell from '@push.rocks/smartshell';
2022-03-12 13:43:54 +00:00
2022-10-12 15:21:03 +00:00
export { smartshell };
2022-03-12 13:43:54 +00:00
// third party scope
import * as tsNode from 'ts-node';
2022-10-12 15:21:03 +00:00
export { tsNode };