Skip to content

Commit 78bd215

Browse files
1 parent 2b5c97b commit 78bd215

21 files changed

+506
-15846
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
command: yarn build
3737
- run:
3838
name: Linting Code
39-
command: yarn lint -- -c tslint.ci.json -q
39+
command: yarn lint-ci
4040
- run:
4141
name: Mocha Tests
4242
command: yarn cover-ci

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ yarn-error.log
88
/notes.md
99
/npm-debug.log
1010
/storage
11+
.idea

nodemon.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"watch": ["src"],
3+
"ext": "ts",
4+
"ignore": ["src/**/*.test.ts"],
5+
"exec": "ts-node -r tsconfig-paths/register -r dotenv/config src/server.ts",
6+
"env": {
7+
"NODE_ENV": "development"
8+
}
9+
}

0 commit comments

Comments
 (0)