feat: pump doc references (#29331)

This commit is contained in:
Jason Rasmussen 2026-06-26 12:45:06 -04:00 committed by GitHub
parent 29949bebe4
commit 6507b1f94c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
22 changed files with 1050 additions and 591 deletions

View file

@ -0,0 +1,25 @@
import { defineConfig, UserConfig } from 'vite';
export default defineConfig({
resolve: {
alias: { src: '/src' },
tsconfigPaths: true,
},
build: {
rolldownOptions: {
input: 'src/main.ts',
output: {
dir: 'dist',
},
},
ssr: true,
},
ssr: {
// bundle everything except for Node built-ins
noExternal: /^(?!node:).*$/,
},
test: {
name: 'scripts:unit',
globals: true,
},
} as UserConfig);