repository template for Node.js & TypeScript projects

chore(tsdown): enable nodeProtocol (#463)

authored by samanthanguyen.me and committed by

GitHub bf5dfb36 d552c1aa

+2
+1
README.md
··· 68 68 | TypeScript | [`tsconfig.json`](./tsconfig.json), [`packages/*/tsconfig.json`](packages/pkg1/tsconfig.json) | [docs](https://www.typescriptlang.org/tsconfig), [website](https://www.typescriptlang.org/) | 69 69 | TypeDoc | [`tsconfig.json`](tsconfig.json) (`typedocOptions`) | [docs](https://typedoc.org/options/configuration/), [website](https://typedoc.org/) | 70 70 | Oxlint | [`.oxlintrc.json`](./.oxlintrc.json) | [docs](https://oxc.rs/docs/guide/usage/linter/config.html), [website](https://oxc.rs/docs/guide/usage/linter.html) | 71 + | tsdown | [`packages/*/tsdown.config.ts`](packages/pkg1/tsdown.config.ts) | [docs](https://tsdown.dev/options/config-file), [website](https://tsdown.dev) | 71 72 | Vite | [`packages/*/vite.config.ts`](packages/pkg1/vite.config.ts) | [docs](https://vitejs.dev/config/), [website](https://vitejs.dev/) | 72 73 | Vitest | [`vitest.config.ts`](./vitest.config.ts), [`packages/*/vite.config.ts`](packages/pkg1/vite.config.ts) (`test`) | [docs](https://vitest.dev/config/), [website](https://vitest.dev/) | 73 74 | Dependabot | [`.github/dependabot.yml`](./.github/dependabot.yml) | [docs](https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file), [website](https://github.com/dependabot) |
+1
packages/pkg1/tsdown.config.ts
··· 5 5 dts: true, 6 6 publint: true, 7 7 minify: true, 8 + nodeProtocol: true, 8 9 })