@kazion/create-app
Version:
A cli tool to help you get started with graphql and rest api's with typescript
18 lines (16 loc) • 344 B
text/typescript
import { defineConfig } from 'vitest/config';
import { resolve } from 'path';
export default defineConfig({
root: '.',
esbuild: {
tsconfigRaw: '{}',
},
test: {
clearMocks: true,
globals: true,
setupFiles: ['dotenv/config'],
},
resolve: {
alias: [{ find: '~', replacement: resolve(__dirname, 'src') }],
},
});