diff --git a/package.json b/package.json index 6a95d65..4479471 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,10 @@ "main": "build/index.js", "type": "module", "files": [ - "build" + "build", + "!build/bin", + "!build/examples", + "!build/tests" ], "exports": { ".": "./build/index.js", @@ -20,7 +23,8 @@ "test": "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", "prepublishOnly": "npm run build", "format": "prettier --write .", @@ -108,7 +112,8 @@ "outDir": "./build", "clean": true, "format": "esm", - "dts": true, + "dts": false, + "sourcemap": true, "target": "esnext" } }