Skip to content

Commit

Permalink
Add tsconfig.json
Browse files Browse the repository at this point in the history
Loading Typescript configurations via `tsconfig.json`
  • Loading branch information
DenisCarriere committed Jan 4, 2017
1 parent 6c285c8 commit a341f23
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"test": "npm run lint && npm run types && lerna bootstrap && lerna run test",
"lint": "eslint packages",
"types": "tsc **/test/types.ts --noImplicitAny",
"types": "tsc",
"prepublish": "node ./scripts/generate-readmes"
},
"repository": {
Expand Down
8 changes: 8 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "ES5",
"noImplicitAny": true
},
"exclude": ["node_modules"]
}

0 comments on commit a341f23

Please sign in to comment.