-
Notifications
You must be signed in to change notification settings - Fork 32
/
vite.config.ts
26 lines (22 loc) · 1.04 KB
/
vite.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// This is the default config, runs with Node.js globals and doesn't require `npm run build` before executing tests
import {configDefaults, defineConfig, type UserConfig} from 'vitest/config'
import GithubActionsReporter from 'vitest-github-actions-reporter'
import pkg from './package.json'
export const sharedConfig: UserConfig['test'] = {
// don't use vitest to run Bun and Deno tests
exclude: [...configDefaults.exclude, 'runtimes/**', 'test-next/**'],
// Enable rich PR failed test annotation on the CI
reporters: process.env.GITHUB_ACTIONS ? ['default', new GithubActionsReporter()] : 'default',
// Allow switching test runs from using the source TS or compiled ESM
alias: {
'@sanity/client/csm': new URL(pkg.exports['./csm'].source, import.meta.url).pathname,
'@sanity/client/stega': new URL(pkg.exports['./stega'].source, import.meta.url).pathname,
'@sanity/client': new URL(pkg.exports['.'].source, import.meta.url).pathname,
},
typecheck: {
enabled: true,
},
}
export default defineConfig({
test: sharedConfig,
})