Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
a-tarasyuk committed Oct 21, 2018
0 parents commit 3778a2e
Show file tree
Hide file tree
Showing 8 changed files with 3,554 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"presets": [
"@babel/env",
"@babel/typescript"
],
"plugins": [
"@babel/proposal-class-properties",
"@babel/proposal-object-rest-spread"
]
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
dist
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Rollup-TypeScript-Babel

> This is sample repository demonstrates how to use Rollup, TypeScript and Babel
## Building the repo

```shell
npm run build
```

## Building only types

```shell
npm run build:types
```

## Type-Checking the repo

```shell
npm run type-check
```

And to run in --watch mode:

```shell
npm run type-check:watch
```
Loading

0 comments on commit 3778a2e

Please sign in to comment.