We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 449c518 commit 1ec0114Copy full SHA for 1ec0114
tsdown.config.ts
@@ -1,14 +1,16 @@
1
import { defineConfig } from "tsdown"
2
3
+const banner = `/**
4
+ * @author Toru Nagashima <https://github.com/mysticatea>
5
+ * See LICENSE file in root directory for full license.
6
+ */`
7
+
8
export default defineConfig({
9
entry: "./src/index.ts",
10
target: "es2015",
11
sourcemap: true,
12
outputOptions: {
- banner: `/**
- * @author Toru Nagashima <https://github.com/mysticatea>
- * See LICENSE file in root directory for full license.
- */`,
13
+ banner,
14
},
15
dts: true,
16
format: "cjs",
0 commit comments