44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
/// <reference types="vitest/config" />
|
|
import tailwindcss from '@tailwindcss/vite';
|
|
import react from '@vitejs/plugin-react';
|
|
import { VitePWA } from 'vite-plugin-pwa';
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
react(),
|
|
tailwindcss(),
|
|
VitePWA({
|
|
registerType: 'autoUpdate',
|
|
manifest: {
|
|
name: 'Idlegame',
|
|
short_name: 'Idlegame',
|
|
description: 'Idle/incremental text-fantasy RPG.',
|
|
theme_color: '#0f172a',
|
|
background_color: '#0f172a',
|
|
display: 'standalone',
|
|
start_url: '/',
|
|
icons: [
|
|
{ src: 'pwa-192.png', sizes: '192x192', type: 'image/png' },
|
|
{ src: 'pwa-512.png', sizes: '512x512', type: 'image/png' },
|
|
{ src: 'pwa-512.png', sizes: '512x512', type: 'image/png', purpose: 'maskable' },
|
|
],
|
|
},
|
|
}),
|
|
],
|
|
test: {
|
|
environment: 'node',
|
|
globals: false,
|
|
coverage: {
|
|
provider: 'v8',
|
|
include: ['src/engine/**'],
|
|
thresholds: {
|
|
lines: 80,
|
|
functions: 80,
|
|
branches: 80,
|
|
statements: 80,
|
|
},
|
|
},
|
|
},
|
|
});
|