Skip to content

Commit

Permalink
chore: test type definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
tsvetomir committed Jan 31, 2019
1 parent f97feeb commit 4534569
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"typings": "dist/npm/main.d.ts",
"scripts": {
"build-package": "gulp build-rollup-package",
"test": "gulp e2e",
"test": "tsc && gulp e2e",
"lint": "gulp lint",
"semantic-release": "semantic-release pre && semantic-prerelease publish && semantic-release post"
},
Expand All @@ -26,8 +26,9 @@
"cz-conventional-changelog": "^1.1.5",
"ghooks": "^1.0.3",
"gulp": "3.9.0",
"validate-commit-msg": "^1.1.1",
"semantic-release": "^6.3.6"
"semantic-release": "^6.3.6",
"typescript": "^2.9.2",
"validate-commit-msg": "^1.1.1"
},
"config": {
"commitizen": {
Expand Down
12 changes: 12 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"compilerOptions": {
"noEmit": true,
"declaration": false,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true
},
"files": [
"src/main.d.ts"
]
}

0 comments on commit 4534569

Please sign in to comment.