We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9693cba commit ce6a9adCopy full SHA for ce6a9ad
package.json
@@ -20,7 +20,7 @@
20
"node": ">=18"
21
},
22
"scripts": {
23
- "test": "xo && c8 ava && tsd"
+ "test": "xo && c8 ava && tsd && tsc"
24
25
"files": [
26
"index.js",
@@ -72,6 +72,7 @@
72
"path-key": "^4.0.0",
73
"tempfile": "^5.0.0",
74
"tsd": "^0.31.0",
75
+ "typescript": "^5.4.5",
76
"which": "^4.0.0",
77
"xo": "^0.58.0"
78
tsconfig.json
@@ -0,0 +1,12 @@
1
+{
2
+ "compilerOptions": {
3
+ "module": "nodenext",
4
+ "moduleResolution": "nodenext",
5
+ "moduleDetection": "force",
6
+ "target": "ES2022",
7
+ "strict": true
8
+ },
9
+ "files": [
10
+ "index.d.ts"
11
+ ]
12
+}
0 commit comments