UNPKG

@adaliszk/qwik

Version:

Qwik stack and configuration for Development using Typescript

37 lines (30 loc) 973 B
_Facade for Qwik-based development_ ### Provides - Eslint config for Qwik - Qwik and Qwik-City facades ### Usage 1. Install the package `pnpm install --dev @adaliszk/qwik vite` 2. Update your `tsconfig.json` to extend from the new config: ```json { "extends": "@adaliszk/qwik/config", "compilerOptions": { "baseUrl": "src", "outDir": "dist" }, "include": [ "src/**/*.tsx", "src/**/*" ] } ``` 3. Use facades or the dependent packages quick access to Qwik and Qwik-City: ```typescript import { Qwik, City } from '@adaliszk/qwik' // or import { component$ } from '@builder.io/qwik' import { DocumentHead } from '@builder.io/qwik-city' ``` ### Versioning Since this is a meta-package, the versioning reflect its main provided package, in this case `@builder.io/qwik`. However, only the Major and Minor versions are kept in sync, and the Patch is used to bump the meta-package.