Skip to content

Commit

Permalink
chore: Update config interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
ludohenin committed Feb 26, 2016
1 parent 8c12849 commit 514060a
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 31 deletions.
2 changes: 1 addition & 1 deletion tools/config/project/config.interface.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export interface IProjectConfig {
SAMPLE_VALUE;
SAMPLE_VALUE: string;
}
60 changes: 30 additions & 30 deletions tools/config/seed/config.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,34 +4,34 @@
*/

export interface ISeedConfig {
PORT;
PROJECT_ROOT;
ENV;
DEBUG;
DOCS_PORT;
COVERAGE_PORT;
APP_BASE;
ENABLE_HOT_LOADING;
HOT_LOADER_PORT;
BOOTSTRAP_MODULE;
APP_TITLE;
APP_SRC;
ASSETS_SRC;
TOOLS_DIR;
DOCS_DEST;
DIST_DIR;
DEV_DEST;
PROD_DEST;
TMP_DIR;
APP_DEST;
CSS_DEST;
JS_DEST;
APP_ROOT;
VERSION;
CSS_PROD_BUNDLE;
JS_PROD_SHIMS_BUNDLE;
JS_PROD_APP_BUNDLE;
VERSION_NPM;
VERSION_NODE;
NG2LINT_RULES;
APP_BASE: string;
APP_DEST: string;
APP_ROOT: string;
APP_SRC: string;
APP_TITLE: string;
ASSETS_SRC: string;
BOOTSTRAP_MODULE: string;
COVERAGE_PORT: number;
CSS_DEST: string;
CSS_PROD_BUNDLE: string;
DEBUG: string;
DEV_DEST: string;
DIST_DIR: string;
DOCS_DEST: string;
DOCS_PORT: number;
ENABLE_HOT_LOADING: boolean;
ENV: string;
HOT_LOADER_PORT: number;
JS_DEST: string;
JS_PROD_APP_BUNDLE: string;
JS_PROD_SHIMS_BUNDLE: string;
NG2LINT_RULES: string[];
PORT: number;
PROD_DEST: string;
PROJECT_ROOT: string;
TMP_DIR: string;
TOOLS_DIR: string;
VERSION_NODE: string;
VERSION_NPM: string;
VERSION: string;
}

0 comments on commit 514060a

Please sign in to comment.