We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e642fbe commit 6c258b9Copy full SHA for 6c258b9
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@astx/lib",
3
- "version": "1.9.6",
+ "version": "1.9.7",
4
"description": "Compiler & Runtime library for a tiny JS AST based binary file format",
5
"main": "./dist/index.js",
6
"module": "./dist/index.mjs",
tsup.config.ts
@@ -6,14 +6,7 @@
import { defineConfig } from "tsup";
7
8
export default defineConfig({
9
- entry: [
10
- "src/index.ts",
11
- "src/compiler.ts",
12
- "src/loader/buffer.ts",
13
- "src/loader/file.ts",
14
- "src/runtime/default.ts",
15
- "src/runtime/safe.ts",
16
- ],
+ entry: ["src/index.ts"],
17
format: ["cjs", "esm"], // Build for commonJS and ESmodules
18
dts: true, // Generate declaration file (.d.ts)
19
splitting: false,
0 commit comments