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

15 lines
268 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',
UI: './ui',
2018-04-20 20:07:36 +02:00
VSIX_DIR: path.join(__dirname, '../../'),
};
export default PATHS;