istetempora
Version:
Slick builder APIs for Arweave smart contract creation
23 lines (21 loc) • 512 B
text/typescript
/// <reference types="vitest" />
import { defineConfig } from "vite";
export default defineConfig({
test: {
include: [
"**/*.test.*",
],
exclude: [
"**/node_modules/**",
"**/dist/**",
"**/cypress/**",
"**/.{idea,git,cache,output,temp}/**",
"**/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build}.config.*",
"**/_unstable*/**",
],
cache: false,
alias: {
"@/": new URL("./", import.meta.url).pathname,
},
},
});