13 lines
513 B
TypeScript
13 lines
513 B
TypeScript
import * as plugins from './bunq.plugins.js';
|
|
import { fileURLToPath } from 'url';
|
|
import { dirname } from 'path';
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = dirname(__filename);
|
|
|
|
export const packageDir = plugins.path.join(__dirname, '../');
|
|
export const nogitDir = plugins.path.join(packageDir, './.nogit/');
|
|
|
|
export const bunqJsonProductionFile = plugins.path.join(nogitDir, 'bunqproduction.json');
|
|
export const bunqJsonSandboxFile = plugins.path.join(nogitDir, 'bunqsandbox.json');
|