mirror of
https://github.com/zh-lx/pinyin-pro.git
synced 2026-03-13 09:51:38 +08:00
17 lines
323 B
JavaScript
17 lines
323 B
JavaScript
import { defineConfig } from 'vitest/config';
|
|
import path from 'path';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
alias: [
|
|
{
|
|
find: '@',
|
|
replacement: path.resolve(__dirname, './lib'),
|
|
},
|
|
],
|
|
coverage: {
|
|
include: ['lib/**'],
|
|
exclude: ['lib/data/dict1-pinyin.ts']
|
|
}
|
|
},
|
|
}) |