This commit is contained in:
2025-01-10 03:09:32 +01:00
commit 8f805e0ebf
16 changed files with 10309 additions and 0 deletions

24
ts/plugins.ts Normal file
View File

@@ -0,0 +1,24 @@
// node native scope
import * as fs from 'fs';
import * as path from 'path';
export {
fs,
path,
}
// @push.rocks scope
import * as smartpath from '@push.rocks/smartpath';
import * as smartfile from '@push.rocks/smartfile';
export {
smartpath,
smartfile,
}
// third party scope
import axios from 'axios';
export {
axios,
}