We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93fccc7 commit 01a8a75Copy full SHA for 01a8a75
package.json
@@ -31,8 +31,9 @@
31
"scripts": {
32
"prepush": "npm test",
33
"commitmsg": "validate-commit-msg",
34
- "pretest": "eslint \"lib/**/*.js\" \"test/**/*.js\"",
35
- "test": "tap \"test/tap/**/*.js\" --cov",
+ "pretest": "eslint 'lib/**/*.js' 'test/**/*.js'",
+ "test": "tap 'test/tap/**/*.js' --100",
36
+ "typings": "tsc -p types/tsconfig.json",
37
"codecov": "tap 'test/tap/**/*.js' --cov --coverage-report=lcov && codecov"
38
},
39
"directories": {
types/tsconfig.json
@@ -0,0 +1,9 @@
1
+{
2
+ "compileOnSave": false,
3
+ "compilerOptions": {
4
+ "strict": true,
5
+ "noUnusedParameters": true,
6
+ "noUnusedLocals": false,
7
+ "noEmit": true
8
+ }
9
+}
0 commit comments