forked from software-mansion/TypeGPU
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvitest.config.ts
62 lines (58 loc) · 1.51 KB
/
vitest.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import * as path from 'node:path';
import type { PluginOption } from 'vite';
// eslint-disable-next-line import/extensions
import { defineConfig } from 'vitest/config';
/**
* Redirects all imports of files that end in '.ne'
* into imports of their corresponding '.ts' files.
*/
function nearleyRedirectPlugin(): PluginOption {
return {
name: 'nearley-redirect',
enforce: 'pre',
resolveId(source, importer) {
if (source.endsWith('.ne')) {
const abs = importer
? path.join(path.dirname(importer), source)
: source;
return {
id: abs.replace(/\.ne$/, '.ts'),
};
}
},
};
}
export default defineConfig({
resolve: {
alias: [
{
find: /^typegpu\/data$/,
replacement: './packages/typegpu/src/data/index.ts',
},
{
find: /^typegpu\/macro$/,
replacement: './packages/typegpu/src/macro/index.ts',
},
{
find: /^typegpu\/experimental$/,
replacement: './packages/typegpu/src/experimental/index.ts',
},
{
find: /^typegpu$/,
replacement: './packages/typegpu/src/index.ts',
},
{ find: /^typegpu(.*)$/, replacement: './packages/typegpu/src/$1.ts' },
],
},
plugins: [nearleyRedirectPlugin()],
test: {
name: 'typegpu',
environment: 'jsdom',
exclude: ['./**/node_modules'],
reporters: 'basic',
coverage: {
reporter: ['text', 'json', 'html', 'text-summary'],
reportsDirectory: './coverage/',
},
},
});