Spaces:
Running
Running
File size: 593 Bytes
518343a | 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 | import { defineConfig } from 'vitest/config';
import path from 'path';
export default defineConfig({
esbuild: {
tsconfigRaw: {
compilerOptions: {
target: 'es2022',
module: 'esnext',
moduleResolution: 'bundler',
esModuleInterop: true,
strict: true,
skipLibCheck: true,
verbatimModuleSyntax: false,
},
},
},
resolve: {
alias: {
'@a11oy/connection': path.resolve(__dirname, '../a11oy-connection/src/index.ts'),
},
},
test: {
include: ['src/governance/__tests__/lid-check.test.ts'],
},
});
|