15 lines
306 B
TypeScript
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;
|