We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0f06db commit b80f3baCopy full SHA for b80f3ba
2 files changed
.github/workflows/ci.yml
@@ -85,7 +85,7 @@ jobs:
85
${{steps.get-versions.outputs.pkg}} run build
86
tmp=$(mktemp)
87
jq --arg version "${{ github.event.release.tag_name }}" '.version = $version' package.json > $tmp
88
- mv $tmp package.json
+ jq 'del(.type)' $tmp > package.json
89
echo version=$(jq -r '.version' package.json) >> $GITHUB_OUTPUT
90
91
- name: Publish
tsconfig.json
@@ -14,7 +14,7 @@
14
"removeComments": true,
15
"declarationDir": "lib/types",
16
"strict": true,
17
- "allowSyntheticDefaultImports": true,
+ "esModuleInterop": true,
18
"skipLibCheck": true
19
},
20
"exclude": ["node_modules", "**/*.spec.ts", "lib"]
0 commit comments