94189a72c3
* refactor(deps): added tslint, cleanup, and activationEvents modified * refactor(lint): linting... * refactor(changelog): changelo method refactor (should be tested) * refactor(theme-icons): linting and small refactor * refactor(accents-setter): linting and small refactor * chore(travis): added travis file
13 lines
254 B
TypeScript
13 lines
254 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;
|