Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Set up typescript (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylarner authored Sep 25, 2017
1 parent 1712ccf commit 815dfe3
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ server/events.txt
.DS_Store
config/local*
server/logs/*.gz
build/
!tsconfig.json
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@
"zmq": "^2.15.3"
},
"devDependencies": {
"@types/node": "^6.0.0",
"autoprefixer": "^7.1.2",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
Expand Down Expand Up @@ -110,6 +111,8 @@
"redux-devtools-dock-monitor": "^1.1.2",
"redux-devtools-log-monitor": "^1.3.0",
"style-loader": "^0.18.2",
"ts-node": "^3.3.0",
"typescript": "^2.5.2",
"url-loader": "^0.5.9",
"webpack": "^2.7.0",
"webpack-dev-middleware": "^1.11.0",
Expand Down
20 changes: 20 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"include": [
"server/**/*"
],
"compilerOptions": {
"module": "es6",
"moduleResolution": "node",
"target": "es6",
"sourceMap": true,
"outDir": "build",
"allowJs": true,
"checkJs": true,
"lib": [
"es2016"
]
},
"exclude": [
"node_modules"
]
}

0 comments on commit 815dfe3

Please sign in to comment.