UNPKG

leds-spark-lib

Version:

Biblioteca de geração de código

38 lines 1.5 kB
/** * Helper Files Generator Module * * This module generates all configuration and helper files needed for the Vue.js frontend. * These files include project configuration, TypeScript settings, environment variables, * and other necessary setup files. * * Generated Files: * - .browserslistrc: Browser compatibility settings * - .editorconfig: Editor formatting rules * - .env.dev: Development environment variables * - .gitignore: Git ignore patterns * - components.d.ts: Component type declarations * - env.d.ts: Environment variable types * - package.json: Project dependencies and scripts * - tsconfig files: TypeScript configuration * - vite.config.mts: Vite bundler configuration * - index.html: Application entry point */ import SEON from "seon-lib-implementation"; /** * Main helper files generator function * * Creates all necessary configuration and setup files for the Vue.js application. * * @param project_abstraction - Project metadata and configuration * @param target_folder - Directory where helper files will be generated * * Configuration Categories: * - Development tools (browserslist, editor config) * - TypeScript setup (tsconfig files) * - Build configuration (Vite config) * - Project metadata (package.json) * - Type declarations (*.d.ts files) * - Environment settings (.env files) */ export declare function generate(project_abstraction: SEON.ProjectAbstraction, target_folder: string): void; //# sourceMappingURL=helpers-generator.d.ts.map