tsbuild/ts/plugins.ts

29 lines
599 B
TypeScript
Raw Permalink Normal View History

2024-05-10 15:55:25 +02:00
// node native
import * as path from 'path';
export {
path
}
// @git.zone scope
import * as tspublish from '@git.zone/tspublish';
export {
tspublish
}
2024-05-10 15:55:25 +02:00
// @push.rocks scope
2023-08-26 13:27:51 +02:00
import * as smartcli from '@push.rocks/smartcli';
import * as smartdelay from '@push.rocks/smartdelay';
import * as smartfile from '@push.rocks/smartfile';
import * as smartpath from '@push.rocks/smartpath';
import * as smartpromise from '@push.rocks/smartpromise';
2024-05-10 15:55:25 +02:00
export { smartcli, smartdelay, smartfile, smartpath, smartpromise };
// third party scope
2022-03-11 17:45:51 +01:00
import typescript from 'typescript';
2018-07-25 20:56:42 +02:00
2024-05-10 15:55:25 +02:00
export {
typescript
}