An open API service indexing awesome lists of open source software.

https://github.com/bree7e/lit-element-simple-modal


https://github.com/bree7e/lit-element-simple-modal

Last synced: 19 days ago
JSON representation

Awesome Lists containing this project

README

          

# Lit-Element Demo

```
npm install
npm run build
npm start
```

## Prepare Typescript

* tsc --init

Make the following changes to tsconfig.json

* target = "es2015"
* module = "es2015"
* Uncomment moduleResolution = 'node'
* Uncomment experimentalDecorators = 'true'

* Add major option "include" - array with "./src/components/**/*"
* Add major option "exclude" -- array with 'node_modules'


"include": [
"./src/components/**/*"
],
"exclude": [
"node_modules"
],