feat: Initialize NestJS project with configuration files and basic structure
This commit is contained in:
14
vitest.config.ts
Normal file
14
vitest.config.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import swc from 'unplugin-swc';
|
||||
import { defineConfig } from 'vitest/config';
|
||||
|
||||
export default defineConfig({
|
||||
test: {
|
||||
globals: true,
|
||||
root: './',
|
||||
},
|
||||
plugins: [
|
||||
swc.vite({
|
||||
module: { type: 'es6' },
|
||||
}),
|
||||
],
|
||||
});
|
||||
Reference in New Issue
Block a user