From 514060ac2706eb4aa9827467f955b3c6a625f451 Mon Sep 17 00:00:00 2001 From: ludohenin Date: Fri, 26 Feb 2016 17:05:32 +0100 Subject: [PATCH] chore: Update config interfaces --- tools/config/project/config.interface.ts | 2 +- tools/config/seed/config.interface.ts | 60 ++++++++++++------------ 2 files changed, 31 insertions(+), 31 deletions(-) diff --git a/tools/config/project/config.interface.ts b/tools/config/project/config.interface.ts index e769900..0e758d7 100644 --- a/tools/config/project/config.interface.ts +++ b/tools/config/project/config.interface.ts @@ -1,3 +1,3 @@ export interface IProjectConfig { - SAMPLE_VALUE; + SAMPLE_VALUE: string; } diff --git a/tools/config/seed/config.interface.ts b/tools/config/seed/config.interface.ts index ede5f21..1e0c7b8 100644 --- a/tools/config/seed/config.interface.ts +++ b/tools/config/seed/config.interface.ts @@ -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; }