72a12df8e1
* 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
8 lines
408 B
TypeScript
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';
|