Skip to content

Latest commit

 

History

History
44 lines (34 loc) · 909 Bytes

README.md

File metadata and controls

44 lines (34 loc) · 909 Bytes

Lit Starter

Well-prepared out-of-the-box lit starter.

Structure

.
├── lib                         # the main folder
│  ├── hello.element.spec.ts    # the element test
│  ├── hello.element.ts         # the element
│  ├── index.ts                 # library entry
│  └── some.element.ts
├── package-lock.json
├── package.json
├── README.md
├── src                         # test or demo the custom elements
│  └── index.html
├── tsconfig.app.json
├── tsconfig.json
├── tsconfig.lib.json
├── web-dev-server.config.js    # web dev server config file
└── web-test-runner.config.js   # web test runner config file

Commands

  • Start project in dev mode

    npm run start:Dev
  • Run tests

    npm test
  • Build

    npm run build