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 5414ea1 commit 48d1f57Copy full SHA for 48d1f57
package.json
@@ -34,11 +34,12 @@
34
"sideEffects": false,
35
"scripts": {
36
"build": "rollup -c",
37
- "dev": "npm run build -- --watch",
+ "dev": "nr build --watch",
38
"lint": "eslint .",
39
"prepublishOnly": "npm run build",
40
"release": "bumpp --commit --push --tag && npm publish",
41
"start": "esno src/index.ts",
42
+ "typecheck": "tsc --noEmit",
43
"test": "vitest"
44
},
45
"devDependencies": {
tsconfig.json
@@ -7,6 +7,7 @@
7
"esModuleInterop": true,
8
"strict": true,
9
"strictNullChecks": true,
10
- "resolveJsonModule": true
+ "resolveJsonModule": true,
11
+ "skipLibCheck": true
12
}
13
0 commit comments