Skip to content

Commit

Permalink
chore: do not bundle code as it makes module augmentation impossible
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Sep 25, 2023
1 parent 4c3b71f commit de6e291
Showing 1 changed file with 1 addition and 16 deletions.
17 changes: 1 addition & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"quick:test": "glob -c \"node --enable-source-maps --loader=ts-node/esm --test-reporter=spec --test\" \"tests/*.spec.ts\"",
"clean": "del-cli build",
"typecheck": "tsc --noEmit",
"compile": "npm run lint && npm run clean && tsup-node",
"compile": "npm run lint && npm run clean && tsc",
"build": "npm run compile",
"release": "np",
"prepublishOnly": "npm run build",
Expand Down Expand Up @@ -56,7 +56,6 @@
"np": "^8.0.4",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
Expand Down Expand Up @@ -120,19 +119,5 @@
"modules/core/**",
"src/reporters/**"
]
},
"tsup": {
"entry": [
"./index.ts",
"./src/types.ts",
"./src/reporters/main.ts",
"./factories/main.ts",
"./modules/core/main.ts"
],
"outDir": "./build",
"clean": true,
"format": "esm",
"dts": true,
"target": "esnext"
}
}

0 comments on commit de6e291

Please sign in to comment.