mirror of
https://github.com/Kvan7/Exiled-Exchange-2.git
synced 2025-10-30 14:17:55 +00:00
* Corrupted items pricecheck #252 * Features/tests (#254) * Basic test working * LETS GO TESTING * 0.1.0f bump * version bump & linter fixes
20 lines
419 B
TypeScript
20 lines
419 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
import tsconfigPaths from "vite-tsconfig-paths";
|
|
|
|
export default defineConfig({
|
|
plugins: [tsconfigPaths()],
|
|
test: {
|
|
includeSource: ["src/**/*.{js,ts}"],
|
|
globals: true,
|
|
setupFiles: ["./specs/vitest.setup.ts"],
|
|
},
|
|
define: {
|
|
"import.meta.vitest": "undefined",
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
"@/assets/data/en": "./src/parser/en",
|
|
},
|
|
},
|
|
});
|