feat(global): initialize project and framework structure, dockerize

This commit is contained in:
h
2025-09-02 00:03:50 +03:00
parent 3194237f5f
commit 2e9bfc888f
26 changed files with 422 additions and 113 deletions

23
vitest.config.ts Normal file
View File

@@ -0,0 +1,23 @@
import { defineVitestProject } from '@nuxt/test-utils/config';
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
projects: [
{
test: {
name: 'unit',
include: ['test/{e2e,unit}/*.{test,spec}.ts'],
environment: 'node',
},
},
await defineVitestProject({
test: {
name: 'nuxt',
include: ['app/**/*.spec.ts', 'server/**/*.spec.ts'],
environment: 'nuxt',
},
}),
],
},
});