mirror of
https://github.com/exogen/t2-mapper.git
synced 2026-01-19 12:14:47 +00:00
14 lines
238 B
TypeScript
14 lines
238 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
import { resolve } from "node:path";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ["**/*.spec.ts"],
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
"@": resolve(__dirname, "."),
|
|
},
|
|
},
|
|
});
|