Skip to content

Commit

Permalink
chore: generate types using tsc
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Nov 22, 2023
1 parent 2ccbddb commit db3269e
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"
],
"exports": {
".": "./build/index.js",
Expand All @@ -20,7 +22,8 @@
"test": "cross-env NODE_DEBUG=adonisjs:logger c8 npm run vscode: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 @@ -111,7 +114,8 @@
"outDir": "./build",
"clean": true,
"format": "esm",
"dts": true,
"dts": false,
"sourcemap": true,
"target": "esnext"
}
}

0 comments on commit db3269e

Please sign in to comment.