AAE-51237 Setting moduleResolution to bundler, fixing build issues

This commit is contained in:
Ehsan Rezaei
2026-09-07 16:19:53 +02:00
parent 1772295ac0
commit 5035fe00d9
10 changed files with 6 additions and 9 deletions
-2
View File
@@ -315,8 +315,6 @@ export default [
parser: angularTemplateParser
},
rules: {
...angularEslintTemplatePlugin.configs.recommended.rules,
...angularEslintTemplatePlugin.configs.accessibility.rules,
...nxPlugin.configs['angular-template'].rules,
'@angular-eslint/template/prefer-self-closing-tags': 'error'
}
@@ -2,7 +2,6 @@
"extends": "../../../tsconfig.json",
"compilerOptions": {
"emitDecoratorMetadata": true,
"moduleResolution": "bundler"
},
"exclude": ["../**/*.spec.ts" ],
@@ -100,7 +100,7 @@ export class PopOverDirective implements OnInit, OnDestroy, AfterViewInit {
}
@HostListener('keyup.enter')
private toggleOverlay(): void {
toggleOverlay(): void {
if (!this.overlayRef.hasAttached()) {
this.attachOverlay();
} else {
@@ -125,7 +125,7 @@ export class PopOverDirective implements OnInit, OnDestroy, AfterViewInit {
}
@HostListener('document:keyup.esc')
private detachOverlay(): void {
detachOverlay(): void {
if (this.overlayRef.hasAttached()) {
this.overlayRef.detach();
this._open = false;
-1
View File
@@ -2,7 +2,6 @@
"extends": "../../../tsconfig.json",
"compilerOptions": {
"emitDecoratorMetadata": true,
"moduleResolution": "bundler"
},
"exclude": ["../**/*.spec.ts" ],
+1
View File
@@ -21,6 +21,7 @@
"skipTemplateCodegen": true,
"strictMetadataEmit": true,
"enableResourceInlining": true,
"typeCheckHostBindings": false,
"strictTemplates": true
}
}
+1
View File
@@ -21,6 +21,7 @@
"skipTemplateCodegen": true,
"strictMetadataEmit": true,
"enableResourceInlining": true,
"typeCheckHostBindings": false,
"strictTemplates": true
}
}
+1
View File
@@ -6,5 +6,6 @@
"removeComments": false,
"declaration": true,
"declarationDir": "../../../dist/libs/js-api/typings",
"emitDeclarationOnly": true
}
}
@@ -2,7 +2,6 @@
"extends": "../../../tsconfig.json",
"compilerOptions": {
"emitDecoratorMetadata": true,
"moduleResolution": "bundler"
},
"exclude": ["../**/*.spec.ts", "../**/test.ts", "../**/*.module.ts" ],
"include": ["../src/**/*", "*.ts"]
-1
View File
@@ -2,7 +2,6 @@
"extends": "../../../tsconfig.json",
"compilerOptions": {
"emitDecoratorMetadata": true,
"moduleResolution": "bundler"
},
"exclude": [
+1 -1
View File
@@ -8,7 +8,7 @@
"baseUrl": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"moduleResolution": "bundler",
"experimentalDecorators": true,
"skipLibCheck": true,
"noUnusedLocals": true,