1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-09 00:37:27 +00:00

found a better config setup I like

This commit is contained in:
Bowden
2018-01-04 16:29:01 -08:00
parent 0433506187
commit 5e762331d8
2 changed files with 3 additions and 1 deletions

View File

@@ -3,7 +3,8 @@
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/dist": true
"**/dist": true,
"**/coverge": true
},
"typescript.referencesCodeLens.enabled": true,
"tslint.ignoreDefinitionFiles": false,

View File

@@ -12,6 +12,7 @@ import mongoose from "mongoose";
import passport from "passport";
import expressValidator from "express-validator";
import bluebird from "bluebird";
import { MONGODB_URI, SESSION_SECRET } from "./util/loadSecrets";
const MongoStore = mongo(session);