Skip to content

Commit

Permalink
Reduce conf files
Browse files Browse the repository at this point in the history
  • Loading branch information
ukupat committed Dec 21, 2023
1 parent 42a0a1d commit d66f68d
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 22 deletions.
7 changes: 0 additions & 7 deletions .eslintrc.json

This file was deleted.

15 changes: 0 additions & 15 deletions jest.config.json

This file was deleted.

38 changes: 38 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,43 @@
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"jest": {
"preset": "ts-jest",
"verbose": true,
"clearMocks": true,
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"ts"
],
"testMatch": [
"**/*.test.ts"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"coverageReporters": [
"text"
],
"collectCoverage": true,
"collectCoverageFrom": [
"./src/**"
]
},
"eslintConfig": {
"extends": [
"@remato/eslint-config/typescript"
],
"ignorePatterns": [
"dist"
],
"rules": {
"no-console": 0
}
}
}

0 comments on commit d66f68d

Please sign in to comment.