mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-05 07:38:57 +00:00
36 lines
1.5 KiB
JavaScript
36 lines
1.5 KiB
JavaScript
/* @flow */
|
|
|
|
import path from 'path';
|
|
|
|
export const ABSOLUTE_BASE: string = path.normalize(path.join(__dirname, '..'));
|
|
|
|
const constants: Object = Object.freeze({
|
|
BUILD: path.join(ABSOLUTE_BASE, 'build/'),
|
|
PUBLIC: path.join(ABSOLUTE_BASE, 'public/'),
|
|
SRC: path.join(ABSOLUTE_BASE, 'src/'),
|
|
PORT: 8081,
|
|
INDEX: path.join(ABSOLUTE_BASE, 'src/index.html'),
|
|
TREZOR_CONNECT_ROOT: path.join(ABSOLUTE_BASE, '../trezor-connect/'),
|
|
});
|
|
|
|
export const { TREZOR_CONNECT_ROOT }: { TREZOR_CONNECT_ROOT: string } = constants;
|
|
export const TREZOR_CONNECT: string = path.join(constants.TREZOR_CONNECT_ROOT, 'src/js/index');
|
|
export const TREZOR_IFRAME: string = path.join(constants.TREZOR_CONNECT_ROOT, 'src/js/iframe/iframe.js');
|
|
export const TREZOR_POPUP: string = path.join(constants.TREZOR_CONNECT_ROOT, 'src/js/popup/popup.js');
|
|
export const TREZOR_WEBUSB: string = path.join(constants.TREZOR_CONNECT_ROOT, 'src/js/webusb/index.js');
|
|
export const TREZOR_CONNECT_HTML: string = path.join(constants.TREZOR_CONNECT_ROOT, 'src/html/');
|
|
export const TREZOR_CONNECT_FILES: string = path.join(constants.TREZOR_CONNECT_ROOT, 'src/data/');
|
|
|
|
export const {
|
|
BUILD,
|
|
SRC,
|
|
PORT,
|
|
INDEX,
|
|
PUBLIC,
|
|
}: { BUILD: string, SRC: string, PORT: string, INDEX: string, PUBLIC: string } = constants;
|
|
// export const SRC: string = constants.SRC;
|
|
// export const PORT: string = constants.PORT;
|
|
// export const INDEX: string = constants.INDEX;
|
|
// export const PUBLIC: string = constants.PUBLIC;
|
|
|
|
export default constants; |