UNPKG
eslint-plugin-file-export-name
Version:
dev (0.0.0-20250203072816)
latest (0.0.2)
0.0.2
0.0.1
0.0.0-20250203072816
0.0.0-20250203070227
0.0.0-20250203064159
ESLint plugin to enforce matching file names with default export names.
eslint-plugin-file-export-name
/
jest.config.js
9 lines
•
303 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
module
.
exports
= { preset:
'ts-jest'
,
// TypeScript 사용시
testEnvironment:
'node'
, moduleFileExtensions: [
'ts'
,
'tsx'
,
'js'
,
'jsx'
,
'json'
,
'node'
], testMatch: [
'**/__tests__/**/*.[jt]s?(x)'
,
'**/?(*.)+(spec|test).[tj]s?(x)'
], moduleNameMapper: {
'^@/(.*)$'
:
'<rootDir>/src/$1'
} };