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
22 lines
257 B
TypeScript
22 lines
257 B
TypeScript
export interface IPaths {
|
|
/**
|
|
* Dist dir
|
|
*/
|
|
DIST: string;
|
|
/**
|
|
* Icons dir
|
|
*/
|
|
ICONS: string;
|
|
/**
|
|
* Src dir
|
|
*/
|
|
SRC: string;
|
|
/**
|
|
* Themes dir
|
|
*/
|
|
THEMES: string;
|
|
/**
|
|
* Extension directory
|
|
*/
|
|
VSIX_DIR: string;
|
|
}
|