tsrun/ts/plugins.ts

22 lines
275 B
TypeScript
Raw 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
export {
2022-03-12 20:59:14 +00:00
path,
url
2022-03-12 20:52:14 +00:00
}
2022-03-12 13:43:54 +00:00
// @pushrocks scope
import * as smartshell from '@pushrocks/smartshell';
export {
smartshell
}
// third party scope
import * as tsNode from 'ts-node';
export {
tsNode
}