From 05753e0efeda1959809394ef7c33b1c26739ac47 Mon Sep 17 00:00:00 2001 From: aidanCQ Date: Mon, 18 Dec 2023 08:32:02 +0000 Subject: [PATCH] Rename build to dist. --- rollup.config.js | 2 +- tsconfig.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rollup.config.js b/rollup.config.js index 29e51f6..ce7fa0b 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -9,7 +9,7 @@ export default [ input: "src/index.ts", output: [ { - dir: "build/", + dir: "dist/", format: "esm", sourcemap: true, }, diff --git a/tsconfig.json b/tsconfig.json index a73bad5..0112bb6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,7 +12,7 @@ "module": "ESNext", "declaration": true, "sourceMap": true, - "outDir": "build", + "outDir": "dist", "moduleResolution": "node", "allowSyntheticDefaultImports": true, "emitDeclarationOnly": true