Skip to content

Commit

Permalink
feat: base scaffolding of typescript server module
Browse files Browse the repository at this point in the history
  • Loading branch information
emyann committed Sep 28, 2018
1 parent 12e0798 commit 2b908d6
Show file tree
Hide file tree
Showing 7 changed files with 2,779 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/templates/typescript_server/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Build results
dist/
typings/**/*

# Others
~$*
*~
node_modules/
7 changes: 7 additions & 0 deletions packages/templates/typescript_server/nodemon.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"watch": ["src/**/*.ts"],
"execMap": {
"ts": "ts-node --compilerOptions '{\"module\":\"commonjs\"}'",
"js": "node"
}
}
Loading

0 comments on commit 2b908d6

Please sign in to comment.