각도 앱에 flex-layout을 추가하려고하지만 사용하려고하면 앱이 중단됩니다. 설치했습니다
npm i @angular/flex-layout @angular/cdk
그런 다음 app.module.ts에서 가져옵니다.
import { FlexLayoutModule } from '@angular/flex-layout';
import [ FlexLayoutModule ]
나는 또한 typescript를 최신으로 업그레이드했습니다
npm i typescript@latest
그러나 앱이 컴파일하려고하면 모든 종류의 오류가 발생합니다.
ERROR in node_modules/@angular/flex-layout/core/typings/base/base2.d.ts:24:19 - error TS1086: An accessor cannot be declared in an ambient context.
24 protected get parentElement(): HTMLElement | null;
~~~~~~~~~~~~~
node_modules/@angular/flex-layout/core/typings/base/base2.d.ts:26:19 - error TS1086: An accessor cannot be declared in an ambient context.
26 protected get nativeElement(): HTMLElement;
~~~~~~~~~~~~~
node_modules/@angular/flex-layout/core/typings/base/base2.d.ts:28:9 - error TS1086: An accessor cannot be declared in an ambient context.
28 get activatedValue(): string;
~~~~~~~~~~~~~~
node_modules/@angular/flex-layout/core/typings/base/base2.d.ts:29:9 - error TS1086: An accessor cannot be declared in an ambient context.
29 set activatedValue(value: string);
~~~~~~~~~~~~~~
node_modules/@angular/flex-layout/core/typings/breakpoints/break-point-registry.d.ts:20:9 - error TS1086: An accessor cannot be declared in an ambient context.
20 get overlappings(): BreakPoint[];
~~~~~~~~~~~~
node_modules/@angular/flex-layout/core/typings/breakpoints/break-point-registry.d.ts:24:9 - error TS1086: An accessor cannot be declared in an ambient context.
그리고 목록은 계속됩니다. 버전이 일치하지 않습니까?
감사.....
또는 타이프 스크립트 버전 일 수 있음>
—
Prashant Pimpale
이것이 귀하의 질문에 대답합니까? TS1086 : 주변 환경에서 접근자를 선언 할 수 없음
—
Prashant Pimpale