45 lines
475 B
Markdown
45 lines
475 B
Markdown
# Persona
|
|
|
|
Web Components with CSS
|
|
|
|
## What I did
|
|
|
|
### 프로젝트 만들기
|
|
|
|
```bash
|
|
yarn init
|
|
yarn add webpack webpack-cli --dev
|
|
yarn webpack-cli init
|
|
```
|
|
|
|
### Lit
|
|
|
|
```bash
|
|
yarn add lit
|
|
```
|
|
|
|
### tsconfig.json
|
|
|
|
```json
|
|
"compilerOptions": {
|
|
...
|
|
"target": "es6",
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true
|
|
}
|
|
```
|
|
|
|
### Storybook
|
|
|
|
```bash
|
|
yarn add sb --dev
|
|
yarn sb init
|
|
yarn storybook
|
|
```
|
|
|
|
---
|
|
|
|
developed by Elex
|
|
|
|
https://www.elex-project.com/
|