SPB Git forge

spb/cancerindex

Public
37commits 1branches 0releases
2.9 MBsize
maindefault branch
10 days agolast push
TypeScript 97.2% SQL 1.5% CSS 0.6% JavaScript 0.5%
282 B · 8 lines typescript
Raw Blame History
1import { defineConfig } from 'vitest/config';2import path from 'node:path';34export default defineConfig({5  test: { include: ['src/**/*.test.ts', 'test/**/*.test.ts'], environment: 'node', passWithNoTests: true },6  resolve: { alias: { '@': path.resolve(__dirname, 'src') } },7});8