-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update all dependencies incl typeorm 0.2.0 -> 0.3.0 (#405)
Major update of all dependencies
- Loading branch information
1 parent
1aaf01d
commit 2457feb
Showing
98 changed files
with
5,292 additions
and
6,442 deletions.
There are no files selected for viewing
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
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 @@ | ||
FROM node:16-alpine | ||
FROM node:20-alpine | ||
|
||
# Install git for devcontainers | ||
RUN apk add --no-cache git | ||
|
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,28 @@ | ||
/* eslint-disable */ | ||
const eslintJs = require('@eslint/js'); | ||
const tsEslint = require('typescript-eslint'); | ||
const eslintPrettier = require('eslint-config-prettier'); | ||
|
||
module.exports = [ | ||
eslintJs.configs.recommended, | ||
...tsEslint.configs.recommended, | ||
eslintPrettier, | ||
{ | ||
languageOptions: { | ||
globals: { | ||
node: true, | ||
require: true, | ||
jest: true, | ||
}, | ||
}, | ||
plugins: { tsEslint }, | ||
rules: { | ||
'@/interface-name-prefix': 'off', | ||
'@/explicit-function-return-type': 'off', | ||
'@/explicit-module-boundary-types': 'off', | ||
'@/no-explicit-any': 'off', | ||
'@/no-unused-vars': ['error', { ignoreRestSiblings: true }], | ||
}, | ||
ignores: ['eslint.config.js', 'dist/*'], | ||
}, | ||
]; |
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
Oops, something went wrong.