9 lines
257 B
TypeScript
9 lines
257 B
TypeScript
import * as plugins from './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_inject/bundle.js');
|