Skip to content

Commit

Permalink
update config files
Browse files Browse the repository at this point in the history
  • Loading branch information
hectorromerodev committed Sep 6, 2022
1 parent 8ee814e commit 7509944
Show file tree
Hide file tree
Showing 5 changed files with 15,381 additions and 11,049 deletions.
54 changes: 44 additions & 10 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
{
"root": true,
"ignorePatterns": ["**/*"],
"plugins": ["@nrwl/nx"],
"ignorePatterns": [
"**/*"
],
"plugins": [
"@nrwl/nx"
],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"files": [
"*.ts",
"*.tsx",
"*.js",
"*.jsx"
],
"rules": {
"@nrwl/nx/enforce-module-boundaries": [
"error",
Expand All @@ -14,29 +23,54 @@
"depConstraints": [
{
"sourceTag": "*",
"onlyDependOnLibsWithTags": ["*"]
"onlyDependOnLibsWithTags": [
"*"
]
}
]
}
]
}
},
{
"files": ["*.ts", "*.tsx"],
"extends": ["plugin:@nrwl/nx/typescript"],
"files": [
"*.ts",
"*.tsx"
],
"extends": [
"plugin:@nrwl/nx/typescript"
],
"rules": {}
},
{
"files": ["*.js", "*.jsx"],
"extends": ["plugin:@nrwl/nx/javascript"],
"files": [
"*.js",
"*.jsx"
],
"extends": [
"plugin:@nrwl/nx/javascript"
],
"rules": {}
},
{
"files": ["*.spec.ts", "*.spec.tsx", "*.spec.js", "*.spec.jsx"],
"files": [
"*.spec.ts",
"*.spec.tsx",
"*.spec.js",
"*.spec.jsx"
],
"env": {
"jest": true
},
"rules": {}
},
{
"files": [
"*.ts"
],
"extends": [
"plugin:@ngrx/recommended"
]
}
]
}
}
1 change: 1 addition & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"projects": {
"api": "apps/api",
"api-interfaces": "libs/api-interfaces",
"core-data": "libs/core-data",
"dashboard": "apps/dashboard",
"dashboard-e2e": "apps/dashboard-e2e"
}
Expand Down
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,19 @@
"private": true,
"dependencies": {
"@angular/animations": "~14.2.0",
"@angular/cdk": "^14.2.0",
"@angular/common": "~14.2.0",
"@angular/compiler": "~14.2.0",
"@angular/core": "~14.2.0",
"@angular/forms": "~14.2.0",
"@angular/material": "^14.2.0",
"@angular/platform-browser": "~14.2.0",
"@angular/platform-browser-dynamic": "~14.2.0",
"@angular/router": "~14.2.0",
"@nestjs/common": "^9.0.0",
"@nestjs/core": "^9.0.0",
"@nestjs/platform-express": "^9.0.0",
"@ngrx/store": "^14.3.0",
"@nrwl/angular": "14.6.4",
"concurrently": "^7.3.0",
"reflect-metadata": "^0.1.13",
Expand All @@ -42,6 +45,7 @@
"@angular/language-service": "~14.2.0",
"@nestjs/schematics": "^9.0.0",
"@nestjs/testing": "^9.0.0",
"@ngrx/eslint-plugin": "^14.3.0",
"@nrwl/cli": "14.6.4",
"@nrwl/cypress": "14.6.4",
"@nrwl/eslint-plugin-nx": "14.6.4",
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@hr-webdev/api-interfaces": ["libs/api-interfaces/src/index.ts"]
"@hr-webdev/api-interfaces": ["libs/api-interfaces/src/index.ts"],
"@hr-webdev/core-data": ["libs/core-data/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
Expand Down
Loading

0 comments on commit 7509944

Please sign in to comment.