Skip to content

Commit

Permalink
fix(typescript): Adding the noImplicitAny flag to validate:ts
Browse files Browse the repository at this point in the history
This will catch these problems in the future
  • Loading branch information
mamodom authored and gr2m committed Nov 18, 2018
1 parent 18ac5bf commit ef4d35a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -101,7 +101,7 @@
"generate-bundle-report": "webpack-bundle-analyzer dist/bundle-stats.json --mode=static --no-open --report dist/bundle-report.html",
"generate-routes": "node scripts/generate-routes",
"prevalidate:ts": "npm run -s build:ts",
"validate:ts": "tsc --target es6 index.d.ts",
"validate:ts": "tsc --target es6 --noImplicitAny index.d.ts",
"postvalidate:ts": "tsc --noEmit --target es6 test/typescript-validate.ts",
"deploy-docs": "gh-pages-with-token -d doc",
"semantic-release": "semantic-release",
Expand Down

0 comments on commit ef4d35a

Please sign in to comment.