9 lines
322 B
TypeScript
9 lines
322 B
TypeScript
import * as plugins from './tools.plugins.js';
|
|
import { fileURLToPath } from 'url';
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = plugins.path.dirname(__filename);
|
|
|
|
export const packageBase = plugins.path.join(__dirname, '../');
|
|
export const assetsDir = plugins.path.join(packageBase, './assets');
|