UNPKG

@progress/kendo-angular-schematics

Version:

Kendo UI Schematics for Angular

23 lines (22 loc) 905 B
/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.createAppModule = createAppModule; 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; } //# sourceMappingURL=create-app-module.js.map