25 lines
518 B
TypeScript
25 lines
518 B
TypeScript
---
|
|
fileName: {{module.name}}.plugins.ts
|
|
---
|
|
// node native
|
|
import * as path from 'path';
|
|
|
|
export {
|
|
path
|
|
}
|
|
|
|
// @api.global scope
|
|
import * as loleServiceserver from '@api.global/typedserver';
|
|
|
|
export {
|
|
loleServiceserver
|
|
}
|
|
|
|
// pushrocks scope
|
|
// pushrocks scope
|
|
import * as projectinfo from '@push.rocks/projectinfo';
|
|
import * as qenv from '@push.rocks/qenv';
|
|
import * as smartdata from '@push.rocks/smartdata';
|
|
import * as smartpath from '@push.rocks/smartpath';
|
|
|
|
export { projectinfo, qenv, smartdata, smartpath }; |