diff --git a/packages/logs-provider/tsup.config.ts b/packages/logs-provider/tsup.config.ts deleted file mode 100644 index c5d448aea..000000000 --- a/packages/logs-provider/tsup.config.ts +++ /dev/null @@ -1,36 +0,0 @@ -import { defineConfig } from "tsup" - -export default defineConfig([ - { - entry: { - index: "src/mod.ts", - }, - outDir: "dist/esm", - format: ["esm"], - dts: true, - sourcemap: true, - clean: true, - tsconfig: "./tsconfig.build.json", - noExternal: ["@polkadot-api/ws-provider"], - external: [ - "@polkadot-api/json-rpc-provider-proxy", - "@polkadot-api/json-rpc-provider", - ], - }, - { - entry: { - index: "src/mod.ts", - }, - outDir: "dist/commonjs", - format: ["cjs"], - dts: true, - sourcemap: true, - clean: true, - tsconfig: "./tsconfig.build.json", - noExternal: ["@polkadot-api/ws-provider"], - external: [ - "@polkadot-api/json-rpc-provider-proxy", - "@polkadot-api/json-rpc-provider", - ], - }, -])