@fairylights-studio/ngx-m3-navigation-common 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/dist/fesm2022/fairylights-studio-ngx-m3-navigation-common.mjs +72 -0
- package/dist/fesm2022/fairylights-studio-ngx-m3-navigation-common.mjs.map +1 -0
- package/dist/types/fairylights-studio-ngx-m3-navigation-common.d.ts +36 -0
- package/ng-package.json +8 -0
- package/package.json +33 -0
- package/project.json +21 -0
- package/src/lib/directives.ts +25 -0
- package/src/lib/navigation-item-base.directive.ts +17 -0
- package/src/public-api.ts +2 -0
- package/tsconfig.lib.json +23 -0
- package/tsconfig.lib.prod.json +11 -0
package/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Navigation Common
|
|
2
|
+
|
|
3
|
+
Shared base classes and directives for Material 3 Expressive navigation components in Angular Material.
|
|
4
|
+
|
|
5
|
+
> This is a **third-party** implementation by FairyLights Studio, not an official Angular / Google component.
|
|
6
|
+
|
|
7
|
+
[查看源代码 / Source](https://github.com/FairyLightsStudio/AngularM3EComponents) · [查看文档 / Docs](https://some-angular-m3e-components.pages.dev/?path=/docs/navigation-navigation-bar--docs)
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { inject, TemplateRef, Directive, input, ContentChild } from '@angular/core';
|
|
3
|
+
|
|
4
|
+
/** Marks projected template content as the default navigation item icon. */
|
|
5
|
+
class MatNavigationIcon {
|
|
6
|
+
templateRef = inject((TemplateRef), { optional: true });
|
|
7
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: MatNavigationIcon, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
8
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.0", type: MatNavigationIcon, isStandalone: true, selector: "[matNavigationIcon], [matNavIcon]", ngImport: i0 });
|
|
9
|
+
}
|
|
10
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: MatNavigationIcon, decorators: [{
|
|
11
|
+
type: Directive,
|
|
12
|
+
args: [{
|
|
13
|
+
selector: '[matNavigationIcon], [matNavIcon]',
|
|
14
|
+
}]
|
|
15
|
+
}] });
|
|
16
|
+
/** Marks projected template content as the icon shown for active navigation items. */
|
|
17
|
+
class MatNavigationActiveIcon {
|
|
18
|
+
templateRef = inject((TemplateRef), { optional: true });
|
|
19
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: MatNavigationActiveIcon, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
20
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.0", type: MatNavigationActiveIcon, isStandalone: true, selector: "[matNavigationActiveIcon], [matNavActiveIcon]", ngImport: i0 });
|
|
21
|
+
}
|
|
22
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: MatNavigationActiveIcon, decorators: [{
|
|
23
|
+
type: Directive,
|
|
24
|
+
args: [{
|
|
25
|
+
selector: '[matNavigationActiveIcon], [matNavActiveIcon]',
|
|
26
|
+
}]
|
|
27
|
+
}] });
|
|
28
|
+
/** Marks projected template content as the navigation item label. */
|
|
29
|
+
class MatNavigationLabel {
|
|
30
|
+
templateRef = inject((TemplateRef), { optional: true });
|
|
31
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: MatNavigationLabel, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
32
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "22.0.0", type: MatNavigationLabel, isStandalone: true, selector: "[matNavigationLabel], [matNavLabel]", ngImport: i0 });
|
|
33
|
+
}
|
|
34
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: MatNavigationLabel, decorators: [{
|
|
35
|
+
type: Directive,
|
|
36
|
+
args: [{
|
|
37
|
+
selector: '[matNavigationLabel], [matNavLabel]',
|
|
38
|
+
}]
|
|
39
|
+
}] });
|
|
40
|
+
|
|
41
|
+
class MatNavigationItemBase {
|
|
42
|
+
/** Whether the navigation item is active/selected. */
|
|
43
|
+
active = input(false, /* @ts-ignore */
|
|
44
|
+
...(ngDevMode ? [{ debugName: "active" }] : /* istanbul ignore next */ []));
|
|
45
|
+
/** Content query for the default icon. */
|
|
46
|
+
icon;
|
|
47
|
+
/** Content query for the active/selected icon. */
|
|
48
|
+
activeIcon;
|
|
49
|
+
/** Content query for the label. */
|
|
50
|
+
label;
|
|
51
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: MatNavigationItemBase, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
52
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "22.0.0", type: MatNavigationItemBase, isStandalone: true, inputs: { active: { classPropertyName: "active", publicName: "active", isSignal: true, isRequired: false, transformFunction: null } }, queries: [{ propertyName: "icon", first: true, predicate: MatNavigationIcon, descendants: true }, { propertyName: "activeIcon", first: true, predicate: MatNavigationActiveIcon, descendants: true }, { propertyName: "label", first: true, predicate: MatNavigationLabel, descendants: true }], ngImport: i0 });
|
|
53
|
+
}
|
|
54
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.0", ngImport: i0, type: MatNavigationItemBase, decorators: [{
|
|
55
|
+
type: Directive
|
|
56
|
+
}], propDecorators: { active: [{ type: i0.Input, args: [{ isSignal: true, alias: "active", required: false }] }], icon: [{
|
|
57
|
+
type: ContentChild,
|
|
58
|
+
args: [MatNavigationIcon]
|
|
59
|
+
}], activeIcon: [{
|
|
60
|
+
type: ContentChild,
|
|
61
|
+
args: [MatNavigationActiveIcon]
|
|
62
|
+
}], label: [{
|
|
63
|
+
type: ContentChild,
|
|
64
|
+
args: [MatNavigationLabel]
|
|
65
|
+
}] } });
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* Generated bundle index. Do not edit.
|
|
69
|
+
*/
|
|
70
|
+
|
|
71
|
+
export { MatNavigationActiveIcon, MatNavigationIcon, MatNavigationItemBase, MatNavigationLabel };
|
|
72
|
+
//# sourceMappingURL=fairylights-studio-ngx-m3-navigation-common.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fairylights-studio-ngx-m3-navigation-common.mjs","sources":["../../src/lib/directives.ts","../../src/lib/navigation-item-base.directive.ts","../../src/fairylights-studio-ngx-m3-navigation-common.ts"],"sourcesContent":["import { Directive, TemplateRef, inject } from '@angular/core';\n\n/** Marks projected template content as the default navigation item icon. */\n@Directive({\n selector: '[matNavigationIcon], [matNavIcon]',\n})\nexport class MatNavigationIcon {\n public templateRef = inject(TemplateRef<unknown>, { optional: true });\n}\n\n/** Marks projected template content as the icon shown for active navigation items. */\n@Directive({\n selector: '[matNavigationActiveIcon], [matNavActiveIcon]',\n})\nexport class MatNavigationActiveIcon {\n public templateRef = inject(TemplateRef<unknown>, { optional: true });\n}\n\n/** Marks projected template content as the navigation item label. */\n@Directive({\n selector: '[matNavigationLabel], [matNavLabel]',\n})\nexport class MatNavigationLabel {\n public templateRef = inject(TemplateRef<unknown>, { optional: true });\n}\n","import { Directive, ContentChild, input } from '@angular/core';\nimport { MatNavigationIcon, MatNavigationActiveIcon, MatNavigationLabel } from './directives';\n\n@Directive()\nexport class MatNavigationItemBase {\n /** Whether the navigation item is active/selected. */\n active = input<boolean>(false);\n\n /** Content query for the default icon. */\n @ContentChild(MatNavigationIcon) protected icon?: MatNavigationIcon;\n\n /** Content query for the active/selected icon. */\n @ContentChild(MatNavigationActiveIcon) protected activeIcon?: MatNavigationActiveIcon;\n\n /** Content query for the label. */\n @ContentChild(MatNavigationLabel) protected label?: MatNavigationLabel;\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;AAEA;MAIa,iBAAiB,CAAA;AACrB,IAAA,WAAW,GAAG,MAAM,EAAC,WAAoB,GAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;uGAD1D,iBAAiB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;2FAAjB,iBAAiB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,mCAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA;;2FAAjB,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAH7B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,mCAAmC;AAC9C,iBAAA;;AAKD;MAIa,uBAAuB,CAAA;AAC3B,IAAA,WAAW,GAAG,MAAM,EAAC,WAAoB,GAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;uGAD1D,uBAAuB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;2FAAvB,uBAAuB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,+CAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA;;2FAAvB,uBAAuB,EAAA,UAAA,EAAA,CAAA;kBAHnC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,+CAA+C;AAC1D,iBAAA;;AAKD;MAIa,kBAAkB,CAAA;AACtB,IAAA,WAAW,GAAG,MAAM,EAAC,WAAoB,GAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;uGAD1D,kBAAkB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;2FAAlB,kBAAkB,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,qCAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA;;2FAAlB,kBAAkB,EAAA,UAAA,EAAA,CAAA;kBAH9B,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,qCAAqC;AAChD,iBAAA;;;MCjBY,qBAAqB,CAAA;;IAEhC,MAAM,GAAG,KAAK,CAAU,KAAK;+EAAC;;AAGa,IAAA,IAAI;;AAGE,IAAA,UAAU;;AAGf,IAAA,KAAK;uGAXtC,qBAAqB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAArB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,qBAAqB,EAAA,YAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,MAAA,EAAA,EAAA,iBAAA,EAAA,QAAA,EAAA,UAAA,EAAA,QAAA,EAAA,QAAA,EAAA,IAAA,EAAA,UAAA,EAAA,KAAA,EAAA,iBAAA,EAAA,IAAA,EAAA,EAAA,EAAA,OAAA,EAAA,CAAA,EAAA,YAAA,EAAA,MAAA,EAAA,KAAA,EAAA,IAAA,EAAA,SAAA,EAKlB,iBAAiB,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,EAAA,YAAA,EAAA,YAAA,EAAA,KAAA,EAAA,IAAA,EAAA,SAAA,EAGjB,uBAAuB,wEAGvB,kBAAkB,EAAA,WAAA,EAAA,IAAA,EAAA,CAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA;;2FAXrB,qBAAqB,EAAA,UAAA,EAAA,CAAA;kBADjC;;sBAME,YAAY;uBAAC,iBAAiB;;sBAG9B,YAAY;uBAAC,uBAAuB;;sBAGpC,YAAY;uBAAC,kBAAkB;;;ACflC;;AAEG;;;;"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { TemplateRef } from '@angular/core';
|
|
3
|
+
|
|
4
|
+
/** Marks projected template content as the default navigation item icon. */
|
|
5
|
+
declare class MatNavigationIcon {
|
|
6
|
+
templateRef: TemplateRef<any> | null;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatNavigationIcon, never>;
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatNavigationIcon, "[matNavigationIcon], [matNavIcon]", never, {}, {}, never, never, true, never>;
|
|
9
|
+
}
|
|
10
|
+
/** Marks projected template content as the icon shown for active navigation items. */
|
|
11
|
+
declare class MatNavigationActiveIcon {
|
|
12
|
+
templateRef: TemplateRef<any> | null;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatNavigationActiveIcon, never>;
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatNavigationActiveIcon, "[matNavigationActiveIcon], [matNavActiveIcon]", never, {}, {}, never, never, true, never>;
|
|
15
|
+
}
|
|
16
|
+
/** Marks projected template content as the navigation item label. */
|
|
17
|
+
declare class MatNavigationLabel {
|
|
18
|
+
templateRef: TemplateRef<any> | null;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatNavigationLabel, never>;
|
|
20
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatNavigationLabel, "[matNavigationLabel], [matNavLabel]", never, {}, {}, never, never, true, never>;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
declare class MatNavigationItemBase {
|
|
24
|
+
/** Whether the navigation item is active/selected. */
|
|
25
|
+
active: i0.InputSignal<boolean>;
|
|
26
|
+
/** Content query for the default icon. */
|
|
27
|
+
protected icon?: MatNavigationIcon;
|
|
28
|
+
/** Content query for the active/selected icon. */
|
|
29
|
+
protected activeIcon?: MatNavigationActiveIcon;
|
|
30
|
+
/** Content query for the label. */
|
|
31
|
+
protected label?: MatNavigationLabel;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatNavigationItemBase, never>;
|
|
33
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MatNavigationItemBase, never, never, { "active": { "alias": "active"; "required": false; "isSignal": true; }; }, {}, ["icon", "activeIcon", "label"], never, true, never>;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export { MatNavigationActiveIcon, MatNavigationIcon, MatNavigationItemBase, MatNavigationLabel };
|
package/ng-package.json
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fairylights-studio/ngx-m3-navigation-common",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Shared base classes and directives for Angular Material 3 Expressive navigation components",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "FairyLights Studio",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"angular",
|
|
9
|
+
"material",
|
|
10
|
+
"material-3",
|
|
11
|
+
"material-design",
|
|
12
|
+
"navigation",
|
|
13
|
+
"shared"
|
|
14
|
+
],
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/FairyLightsStudio/AngularM3EComponents.git",
|
|
18
|
+
"directory": "components/navigation/navigation-common"
|
|
19
|
+
},
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public"
|
|
22
|
+
},
|
|
23
|
+
"peerDependencies": {
|
|
24
|
+
"@angular/cdk": "^22.0.0",
|
|
25
|
+
"@angular/common": "^22.0.0",
|
|
26
|
+
"@angular/core": "^22.0.0",
|
|
27
|
+
"@angular/material": "^22.0.0"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"tslib": "^2.3.0"
|
|
31
|
+
},
|
|
32
|
+
"sideEffects": false
|
|
33
|
+
}
|
package/project.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
|
|
3
|
+
"name": "@fairylights-studio/ngx-m3-navigation-common",
|
|
4
|
+
"projectType": "library",
|
|
5
|
+
"sourceRoot": "components/navigation/navigation-common/src",
|
|
6
|
+
"prefix": "lib",
|
|
7
|
+
"targets": {
|
|
8
|
+
"build": {
|
|
9
|
+
"executor": "@angular/build:ng-packagr",
|
|
10
|
+
"configurations": {
|
|
11
|
+
"production": {
|
|
12
|
+
"tsConfig": "components/navigation/navigation-common/tsconfig.lib.prod.json"
|
|
13
|
+
},
|
|
14
|
+
"development": {
|
|
15
|
+
"tsConfig": "components/navigation/navigation-common/tsconfig.lib.json"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"defaultConfiguration": "production"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Directive, TemplateRef, inject } from '@angular/core';
|
|
2
|
+
|
|
3
|
+
/** Marks projected template content as the default navigation item icon. */
|
|
4
|
+
@Directive({
|
|
5
|
+
selector: '[matNavigationIcon], [matNavIcon]',
|
|
6
|
+
})
|
|
7
|
+
export class MatNavigationIcon {
|
|
8
|
+
public templateRef = inject(TemplateRef<unknown>, { optional: true });
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
/** Marks projected template content as the icon shown for active navigation items. */
|
|
12
|
+
@Directive({
|
|
13
|
+
selector: '[matNavigationActiveIcon], [matNavActiveIcon]',
|
|
14
|
+
})
|
|
15
|
+
export class MatNavigationActiveIcon {
|
|
16
|
+
public templateRef = inject(TemplateRef<unknown>, { optional: true });
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
/** Marks projected template content as the navigation item label. */
|
|
20
|
+
@Directive({
|
|
21
|
+
selector: '[matNavigationLabel], [matNavLabel]',
|
|
22
|
+
})
|
|
23
|
+
export class MatNavigationLabel {
|
|
24
|
+
public templateRef = inject(TemplateRef<unknown>, { optional: true });
|
|
25
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Directive, ContentChild, input } from '@angular/core';
|
|
2
|
+
import { MatNavigationIcon, MatNavigationActiveIcon, MatNavigationLabel } from './directives';
|
|
3
|
+
|
|
4
|
+
@Directive()
|
|
5
|
+
export class MatNavigationItemBase {
|
|
6
|
+
/** Whether the navigation item is active/selected. */
|
|
7
|
+
active = input<boolean>(false);
|
|
8
|
+
|
|
9
|
+
/** Content query for the default icon. */
|
|
10
|
+
@ContentChild(MatNavigationIcon) protected icon?: MatNavigationIcon;
|
|
11
|
+
|
|
12
|
+
/** Content query for the active/selected icon. */
|
|
13
|
+
@ContentChild(MatNavigationActiveIcon) protected activeIcon?: MatNavigationActiveIcon;
|
|
14
|
+
|
|
15
|
+
/** Content query for the label. */
|
|
16
|
+
@ContentChild(MatNavigationLabel) protected label?: MatNavigationLabel;
|
|
17
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
|
2
|
+
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
|
3
|
+
{
|
|
4
|
+
"extends": "../../../tsconfig.json",
|
|
5
|
+
"compilerOptions": {
|
|
6
|
+
// "outDir": "../../../out-tsc/lib",
|
|
7
|
+
"declaration": true,
|
|
8
|
+
"declarationMap": true,
|
|
9
|
+
"types": []
|
|
10
|
+
},
|
|
11
|
+
"include": ["src/**/*.ts"],
|
|
12
|
+
"exclude": [
|
|
13
|
+
"**/*.spec.ts"
|
|
14
|
+
],
|
|
15
|
+
"angularCompilerOptions": {
|
|
16
|
+
"extendedDiagnostics": {
|
|
17
|
+
"checks": {
|
|
18
|
+
"nullishCoalescingNotNullable": "suppress",
|
|
19
|
+
"optionalChainNotNullable": "suppress"
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
|
2
|
+
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
|
3
|
+
{
|
|
4
|
+
"extends": "./tsconfig.lib.json",
|
|
5
|
+
"compilerOptions": {
|
|
6
|
+
"declarationMap": false
|
|
7
|
+
},
|
|
8
|
+
"angularCompilerOptions": {
|
|
9
|
+
"compilationMode": "partial"
|
|
10
|
+
}
|
|
11
|
+
}
|