UNPKG

filetree-pro

Version:

A powerful file tree generator for VS Code and Cursor. Generate beautiful file trees in multiple formats with smart exclusions and custom configurations.

26 lines (25 loc) 628 B
module.exports = { preset: 'ts-jest', testEnvironment: 'node', roots: ['<rootDir>/src'], testMatch: ['**/__tests__/**/*.test.ts'], collectCoverageFrom: ['src/**/*.ts', '!src/**/*.d.ts', '!src/extension.ts'], coverageDirectory: 'coverage', coverageReporters: ['text', 'lcov', 'html'], moduleNameMapper: { '^@/(.*)$': '<rootDir>/src/$1', }, setupFilesAfterEnv: ['<rootDir>/src/__tests__/setup.ts'], testTimeout: 10000, verbose: true, clearMocks: true, restoreMocks: true, transform: { '^.+\\.ts$': 'ts-jest', }, globals: { 'ts-jest': { tsconfig: 'tsconfig.json', }, }, };