add css module compile rule and a login guard

Change-Id: I5c99e236f92d3b6c6d0060b36cf90a252df93a95
diff --git a/tsconfig.json b/tsconfig.json
index cc211c6..39f819e 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -28,6 +28,10 @@
     "forceConsistentCasingInFileNames": true,            /* Ensure that casing is correct in imports. */
     /* Type Checking */
     "strict": true,                                      /* Enable all strict type-checking options. */
-    "skipLibCheck": true                                 /* Skip type checking all .d.ts files. */
+    "skipLibCheck": true                   /* Skip type checking all .d.ts files. */
   },
+  "include": [
+      "src",
+      "typed-css.d.ts"//配置的.d.ts文件
+    ]        
 }