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 dabec75 commit 439b54bCopy full SHA for 439b54b
2 files changed
package.json
@@ -52,7 +52,7 @@
52
"clean": "rimraf dist",
53
"prepublishOnly": "npm run build",
54
"lint": "prettier --write \"src/**/*.js\" && eslint src",
55
- "typecheck": "tsc --noEmit --strict --jsx preserve --esModuleInterop --moduleResolution bundler --target es2022 src/index.d.ts src/factory.d.ts",
+ "typecheck": "tsc",
56
"test": "npm run lint && npm run typecheck && jest",
57
"watch-test": "jest --watch",
58
"watch": "tsup --watch"
tsconfig.json
@@ -0,0 +1,11 @@
1
+{
2
+ "include": ["src/**/*.d.ts"],
3
+ "compilerOptions": {
4
+ "noEmit": true,
5
+ "strict": true,
6
+ "jsx": "preserve",
7
+ "esModuleInterop": true,
8
+ "moduleResolution": "bundler",
9
+ "target": "es2022"
10
+ }
11
+}
0 commit comments