vsc-material-theme/src/env.ts
Alessio Occhipinti 72a12df8e1 Feat/generator 4 iteration (#400)
* chore: move env into src for better build

* chore: removed unused things from webviews

* feat: a better "defaults" - material-theme.config.json

* chore: fix paths for scripts

* feat: new folder "core" with managers

* chore: cleanup all useless things

* chore: update messages to be messages

* refactor: new setAccent command and better material.theme.config entry
2019-12-26 11:30:46 +01:00

8 lines
408 B
TypeScript

import * as path from 'path';
export const SRC_FOLDER_PATH = path.resolve('./src');
export const BUILD_FOLDER_PATH = path.resolve('./build');
export const TS_BUILD_FOLDER_PATH = path.resolve('./dist');
export const CONFIG_FILE_NAME = 'material-theme.config.json';
export const USER_CONFIG_FILE_NAME = 'user.material-theme.config.json';
export const MATERIAL_THEME_EXT_ID = 'equinusocio.vsc-material-theme';