Skip to content

Commit

Permalink
feat: update onecx libs v5 angular v18 (#160)
Browse files Browse the repository at this point in the history
* feat: update onecx libs v5 and angular 18

* fix: p-dataview update usage according to latest primeng 17.8.x

* fix: update onecx libs

---------

Co-authored-by: kim.tran <[email protected]>
  • Loading branch information
KimFFVII and kim.tran authored Jul 29, 2024
1 parent 42c7d4a commit 80afbd6
Show file tree
Hide file tree
Showing 28 changed files with 19,833 additions and 16,859 deletions.
19 changes: 16 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,14 @@
"ecmaVersion": "latest",
"project": "**/tsconfig.json",
"tsconfigRootDir": "",
"createDefaultProgram": true
"createDefaultProgram": true,
"EXPERIMENTAL_useProjectService": true
},
"extends": [
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates",
"plugin:prettier/recommended"
"plugin:prettier/recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"semi": ["error", "never"],
Expand All @@ -57,7 +59,18 @@
}
],
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": ["error", { "vars": "all", "args": "none" }]
"@typescript-eslint/no-unused-vars": ["error", { "vars": "all", "args": "none" }],
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/ban-types": [
"error",
{
"extendDefaults": true,
"types": {
"{}": false
}
}
],
"@typescript-eslint/no-var-requires": 0
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"styles": [
"node_modules/primeicons/primeicons.css",
"node_modules/primeng/resources/primeng.min.css",
"node_modules/@onecx/portal-integration-angular/assets/output.css",
"node_modules/@onecx/portal-integration-angular/assets/styles.scss",
"src/styles.scss"
],
"scripts": ["node_modules/@webcomponents/webcomponentsjs/webcomponents-bundle.js"],
Expand Down
Loading

0 comments on commit 80afbd6

Please sign in to comment.