generated from Byndyusoft/node-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
33f4f7d
commit 94ee2e6
Showing
22 changed files
with
10,291 additions
and
7,682 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
nodeLinker: node-modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,17 +17,14 @@ | |
"files": [ | ||
"dist", | ||
"src", | ||
"index.ts", | ||
"tsconfig.json", | ||
"!dist/*.tsbuildinfo", | ||
"!**/__tests__", | ||
"!**/*spec.ts" | ||
"!dist/*.tsbuildinfo" | ||
], | ||
"scripts": { | ||
"_test:cov": "jest --coverage", | ||
"prebuild": "shx rm -rf ./dist", | ||
"build": "tsc --project ./tsconfig.build.json", | ||
"postinstall": "husky install && ts-patch install", | ||
"build": "yarn run prebuild && yarn run build:src", | ||
"build:src": "tsc --project ./tsconfig.build.json", | ||
"postinstall": "husky install", | ||
"lint": "yarn run lint:eslint && yarn run lint:markdown && yarn run lint:prettier", | ||
"lint:eslint": "eslint --ignore-path ./.gitignore --max-warnings 0 --ext .ts,.js .", | ||
"lint:eslint:fix": "eslint --ignore-path ./.gitignore --fix --ext .ts,.js .", | ||
|
@@ -43,33 +40,26 @@ | |
"jest": { | ||
"collectCoverageFrom": [ | ||
"./src/**/*.ts", | ||
"!**/__tests__/**/*.ts", | ||
"!**/index.ts" | ||
], | ||
"coverageDirectory": "<rootDir>/coverage", | ||
"coverageThreshold": { | ||
"global": { | ||
"branches": 100, | ||
"functions": 100, | ||
"lines": 100, | ||
"statements": 100 | ||
} | ||
}, | ||
"coverageReporters": [ | ||
"lcov", | ||
"text" | ||
], | ||
"moduleFileExtensions": [ | ||
"ts", | ||
"js" | ||
], | ||
"resetMocks": true, | ||
"rootDir": "./", | ||
"roots": [ | ||
"<rootDir>/src", | ||
"<rootDir>/test" | ||
], | ||
"setupFilesAfterEnv": [ | ||
"jest-extended/all" | ||
], | ||
"testEnvironment": "node", | ||
"testRegex": ".*\\.spec\\.ts$", | ||
"testRegex": ".*\\.test\\.ts$", | ||
"transform": { | ||
"^.+\\.ts$": "ts-jest" | ||
} | ||
|
@@ -131,6 +121,7 @@ | |
"nestjs-pino": "^3.1.1", | ||
"rxjs": "^7.5.7" | ||
}, | ||
"packageManager": "[email protected]", | ||
"engines": { | ||
"node": ">=14" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"extends": ["local>Byndyusoft/node-renovate-config"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"extends": "./tsconfig.json", | ||
"exclude": ["./dist", "./node_modules", "./test", "**/__tests__", "**/*spec.ts"] | ||
"include": ["src"] | ||
} |
Oops, something went wrong.