Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions DOCS.md
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure the point of this when we already have a README.md, but it doesn't really matter 🤷

Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
TypeScript goodies for [Determinate Systems][detsys]' GitHub Actions projects.

[detsys]: https://determinate.systems

2 changes: 1 addition & 1 deletion tsdown.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default defineConfig({
name: "detsys-ts",
entry: ["src/index.ts"],
format: ["esm"],
target: "node20",
target: "esnext",
sourcemap: true,
dts: {
resolve: false,
Expand Down
1 change: 1 addition & 0 deletions typedoc.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
module.exports = {
entryPoints: ["./src/index.ts"],
out: "docs",
readme: "./DOCS.md",
tsconfig: "./tsconfig.typedoc.json",
};