vsc-material-theme/extensions/consts/paths.ts
2018-08-30 09:28:26 +02:00

15 lines
306 B
TypeScript

import * as path from 'path';
import {IPaths} from '../interfaces/ipaths';
export const PATHS: IPaths = {
DIST: './dist',
ICONS: './icons',
SRC: './src',
THEMES: './themes',
UI: './ui',
VSIX_DIR: path.join(__dirname, '../../'),
EXT_DIR: path.join(__dirname, '..')
};
export default PATHS;