照搬 lightbox 的 Vite IIFE 工程结构,作为核心 JS 统一归处。 此 commit 仅打通构建管线,业务逻辑后续 task 填入。 同时把 public/yggdrasil-core 加入根 .gitignore。
9 lines
161 B
TypeScript
9 lines
161 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'happy-dom',
|
|
include: ['src/**/*.test.ts'],
|
|
},
|
|
});
|