Skip to content

Commit

Permalink
Upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
nicobytes committed Sep 27, 2023
1 parent b8e67e9 commit ab75f18
Show file tree
Hide file tree
Showing 10 changed files with 8,192 additions and 4,408 deletions.
4 changes: 4 additions & 0 deletions .env-example
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
ACCESS_SECRET_KEY=
REFRESH_SECRET_KEY=
RECOVERY_SECRET_KEY=
NODE_ENV=
13 changes: 2 additions & 11 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
tsconfigRootDir: __dirname,
sourceType: 'module',
},
plugins: ['@typescript-eslint/eslint-plugin'],
Expand All @@ -16,19 +17,9 @@ module.exports = {
},
ignorePatterns: ['.eslintrc.js'],
rules: {
'no-console': 'warn',
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'error',
'@typescript-eslint/no-unused-vars': 'error',
"@typescript-eslint/ban-types": ["error",
{
"types": {
"Function": false,
},
"extendDefaults": true
}
]
'@typescript-eslint/no-explicit-any': 'off',
},
};
13 changes: 1 addition & 12 deletions nest-cli.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,7 @@
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"projects": {
"data-set": {
"type": "library",
"root": "libs/data-set",
"entryFile": "index",
"sourceRoot": "libs/data-set/src",
"compilerOptions": {
"tsConfigPath": "libs/data-set/tsconfig.lib.json"
}
}
},
"compilerOptions": {
"webpack": true
"deleteOutDir": true
}
}
Loading

0 comments on commit ab75f18

Please sign in to comment.