9 lines
262 B
TypeScript
9 lines
262 B
TypeScript
|
import * as plugins from './typedserver.plugins.js';
|
||
|
|
||
|
export const packageDir = plugins.path.join(
|
||
|
plugins.smartpath.get.dirnameFromImportMetaUrl(import.meta.url),
|
||
|
'../'
|
||
|
);
|
||
|
|
||
|
export const bundlePath = plugins.path.join(packageDir, './dist_ts_web/bundle.js');
|