vsc-material-theme/extensions/consts/paths.ts

14 lines
254 B
TypeScript
Raw Normal View History

2018-04-20 20:07:36 +02:00
import * as path from 'path';
import {IPaths} from '../interfaces/ipaths';
2018-04-20 20:07:36 +02:00
export const PATHS: IPaths = {
DIST: './dist',
ICONS: './icons',
SRC: './src',
THEMES: './themes',
VSIX_DIR: path.join(__dirname, '../../'),
};
export default PATHS;