Skip to content

Commit d94c7df

Browse files
committed
v2.10.0
1 parent 37fadd5 commit d94c7df

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
"scripts": {
2929
"lint": "eslint \"./lib/**/*.{js,mjs}\" \"./types/**/*.d.ts\"",
3030
"test": "tap \"./test/**/*.js\" --disable-coverage",
31-
"check": "tsc --noemit --checkjs",
32-
"declare": "tsc --declaration --emitDeclarationOnly --outDir \"./types\""
31+
"declare": "tsc --emitDeclarationOnly"
3332
},
3433
"keywords": [
3534
"is",

tsconfig.json

+10-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
{
22
"compilerOptions": {
3-
"module": "node16",
3+
"module": "nodenext",
44
"allowJs": true,
55
"strict": true,
6-
"noImplicitAny": false
6+
"noImplicitAny": true,
7+
"declaration": true,
8+
"declarationDir": "./types"
79
},
8-
"exclude":[
9-
"node_modules",
10-
"test"
10+
"include": [
11+
"lib",
12+
"types"
13+
],
14+
"exclude": [
15+
"node_modules"
1116
]
1217
}

0 commit comments

Comments
 (0)