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 70b69dc commit c6fac01Copy full SHA for c6fac01
package.json
@@ -55,7 +55,7 @@
55
},
56
"scripts": {
57
"clean": "rm -rf lib",
58
- "compile": "tsup",
+ "compile": "tsc -p tsconfig.lib.json && tsup",
59
"build": "pnpm clean && pnpm compile",
60
"eslint": "eslint . --max-warnings 0",
61
"lint": "pnpm type-check && pnpm eslint",
tsconfig.lib.json
@@ -7,6 +7,7 @@
7
"lib": ["es2021"],
8
"outDir": "lib",
9
"noEmit": false,
10
+ "emitDeclarationOnly": true,
11
"moduleResolution": "Node16"
12
}
13
0 commit comments