@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 { resolve } from "path";
import { defineConfig } from "vitest/config";
export default defineConfig({
root: ".",
esbuild: {
tsconfigRaw: "{}",
},
test: {
clearMocks: true,
globals: true,
setupFiles: ["dotenv/config"],
},
resolve: {
alias: [{ find: "~", replacement: resolve(__dirname, "src") }],
},
});