Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
## Learning Typescript
## To get started

Run
```
npm i
tsc -w
npm start
```

# To run typescript compilation in watch mode
# to rebuild the JS
tsc -w

tsc -w :To run typescript compilation in watch mode to rebuild the JS

### Using decorators for validation

Expand Down
1 change: 0 additions & 1 deletion app.css
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ button:active {
box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.26);
padding: 1rem;
margin: 1rem;
background: white;
}

.projects li h2 {
Expand Down
6 changes: 1 addition & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,7 @@
</form>
</template>
<template id="single-project">
<li draggable="true">
<h2></h2>
<h3></h3>
<p></p>
</li>
<li></li>
</template>
<template id="project-list">
<section class="projects">
Expand Down
Loading