vsc-material-theme/extensions/consts/paths.ts
Mattia Astorino 2f4f56f40d
unlock files
2018-04-20 20:07:36 +02:00

13 lines
256 B
TypeScript

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