@progress/kendo-angular-schematics
Version:
Kendo UI Schematics for Angular
24 lines (23 loc) • 939 B
JavaScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.createAppModule = void 0;
function createAppModule(tree, path) {
tree.create(path || '/src/app/app.module.ts', `
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: []
})
export class AppModule { }
`);
return tree;
}
exports.createAppModule = createAppModule;
//# sourceMappingURL=create-app-module.js.map