ESM Js file not generating for page.ts #7293
Replies: 2 comments 1 reply
-
default entry points are defined here Files should ends with If the file is not exist in output directory, the javascript code will not be built successfully. Check for any error while ts build. |
Beta Was this translation helpful? Give feedback.
-
The problem occurs when I import server types using the following lines: import { LookupType, ParameterDataTypes, ParameterEditorTypes } from "../../ServerTypes/Reports"; |
Beta Was this translation helpful? Give feedback.
-
import { LookupType, ParameterDataTypes, ParameterEditorTypes } from "../../ServerTypes/Reports";
import { Decorators, Widget, BaseDialog, Select2 } from '@serenity-is/corelib';
import { ReportRequest, CommonService } from "../../ServerTypes/Modules";
import $ from 'jquery';
declare var Morris: any;
@Decorators.registerClass('Car.Rental.Reports.DynamicReportsDialog')
@Decorators.resizable()
@Decorators.maximizable()
export class DynamicReportsDialog extends BaseDialog {
import { ReportRequest, CommonService } from "../../ServerTypes/Modules"; this js fie not generating but when comment this line it generating js file
Beta Was this translation helpful? Give feedback.
All reactions