first commit

This commit is contained in:
2021-09-07 13:49:06 +09:00
commit 10cb8fc765
27 changed files with 12975 additions and 0 deletions

32
README.md Normal file
View File

@@ -0,0 +1,32 @@
## 프로젝트 만들기
```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
```