Move the @cozy-games/* packages, sites, docs, and package-publish tooling out to github.com/ayo-run/cozy-games. The app now consumes those packages from npm instead of the workspace. Root config, workspace globs, and CI target the app.
8 lines
191 B
JavaScript
8 lines
191 B
JavaScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'jsdom',
|
|
include: ['apps/**/test/**/*.test.js', 'scripts/test/**/*.test.js']
|
|
}
|
|
})
|