quasqui
Version:
The meta-framework suite designed from scratch for frontend-focused modern web development.
13 lines (11 loc) • 492 B
JavaScript
const sharedConfig = require('@scripts/jest-config');
/** @type {import('@jest/types').Config.InitialOptions} */
module.exports = {
// eslint-disable-next-line node/no-unsupported-features/es-syntax
...sharedConfig,
rootDir: __dirname,
modulePathIgnorePatterns: [
// TODO: 暂时无法解决(Property exprName of TSTypeQuery expected node to be of a type ["TSEntityName","TSImportType"] but instead got "MemberExpression")问题,先绕过
'tests/node.test.ts',
],
};