| 123456789101112131415161718192021 |
- /** @type {import('ts-jest').JestConfigWithTsJest} */
- module.exports = {
- preset: 'ts-jest',
- testEnvironment: 'node',
- moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
- transform: {
- '^.+\\.tsx?$': ['ts-jest', {
- tsconfig: 'tsconfig.json'
- }]
- },
- testMatch: ['**/__tests__/**/*.test.ts'],
- moduleNameMapper: {
- '^vscode$': '<rootDir>/node_modules/@types/vscode/index.d.ts'
- },
- setupFiles: [],
- globals: {
- 'ts-jest': {
- diagnostics: false
- }
- }
- };
|