Skip to content

Latest commit

 

History

History

qwik

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

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:
    {
       "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:
    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.