[MIGRATION] - Migrating to NG18

This commit is contained in:
VitoAlbano
2024-08-14 16:58:24 +01:00
committed by Vito Albano
parent 075e63d693
commit 06cfd684f1
123 changed files with 9783 additions and 11031 deletions

View File

@@ -4,9 +4,14 @@
"overrides": [
{
"files": ["*.ts"],
"extends": ["plugin:@nrwl/nx/angular"],
"extends": ["plugin:@nx/angular"],
"rules": {
"no-underscore-dangle": ["warn", { "allowAfterThis": true }],
"no-underscore-dangle": [
"warn",
{
"allowAfterThis": true
}
],
"@typescript-eslint/dot-notation": "off",
"@typescript-eslint/explicit-member-accessibility": [
"off",
@@ -30,7 +35,6 @@
"no-duplicate-imports": "error",
"no-multiple-empty-lines": "error",
"no-return-await": "error",
"unicorn/filename-case": "off",
"@typescript-eslint/no-unused-expressions": "off",
"@typescript-eslint/consistent-type-assertions": "off",

View File

@@ -4,9 +4,10 @@
"sourceRoot": "lib/js-api",
"projectType": "library",
"prefix": "adf",
"tags": [],
"targets": {
"build": {
"executor": "@nrwl/js:tsc",
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"dependsOn": ["build-esm5"],
"options": {
@@ -24,7 +25,7 @@
}
},
"build-esm5": {
"executor": "@nrwl/js:tsc",
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"dependsOn": ["build-esm2015"],
"options": {
@@ -34,7 +35,7 @@
}
},
"build-esm2015": {
"executor": "@nrwl/js:tsc",
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"dependsOn": ["build-cjs"],
"options": {
@@ -44,7 +45,7 @@
}
},
"build-cjs": {
"executor": "@nrwl/js:tsc",
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/libs/js-api",
@@ -54,7 +55,7 @@
}
},
"build-types": {
"executor": "@nrwl/js:tsc",
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/libs/js-api/typings",
@@ -118,6 +119,5 @@
}
}
}
},
"tags": []
}
}