Skip to content

Commit

Permalink
chore: publish source maps and use tsc for generating types
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Nov 6, 2023
1 parent 0e02a03 commit 03ebacb
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
"main": "build/index.js",
"type": "module",
"files": [
"build"
"build",
"!build/bin",
"!build/tests"
],
"engines": {
"node": ">=18.16.0"
Expand All @@ -19,7 +21,8 @@
"test": "c8 npm run quick:test",
"clean": "del-cli build",
"typecheck": "tsc --noEmit",
"compile": "npm run lint && npm run clean && tsup-node",
"precompile": "npm run lint && npm run clean",
"compile": "tsup-node && tsc --emitDeclarationOnly --declaration",
"build": "npm run compile",
"release": "np",
"version": "npm run build",
Expand Down Expand Up @@ -101,7 +104,8 @@
"outDir": "./build",
"clean": true,
"format": "esm",
"dts": true,
"dts": false,
"sourcemap": true,
"target": "esnext"
}
}

0 comments on commit 03ebacb

Please sign in to comment.