https://github.com/bree7e/lit-element-simple-modal
https://github.com/bree7e/lit-element-simple-modal
Last synced: 19 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bree7e/lit-element-simple-modal
- Owner: bree7e
- Created: 2019-06-15T09:37:41.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-17T12:09:20.000Z (about 7 years ago)
- Last Synced: 2025-02-22T03:43:15.206Z (over 1 year ago)
- Language: TypeScript
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
],