Skip to content

Commit 9870f95

Browse files
authored
Update README.md
1 parent 3c302d3 commit 9870f95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ Table of Contents
1818

1919

2020
## Innovations
21-
- __TYPESCRIPT RAPID SPEED WORKFLOW WITH INCREMENTAL TYPE-CHECKING - loading TS files in browser (on-the-fly) -> no JS emit, it's OK to use only TS files, also for unit testing, it means no transpilation step & no bundling step during development__ _(bundling step is only necessary to create app & vendor bundle for production)_
21+
- __TYPESCRIPT RAPID-SPEED NO-TRANSPILATION WORKFLOW - loading TS files in the browser (on-the-fly), not emitting intermediate JS files, it's OK to use only TS files for speed, also for writing your tests, so it means no transpilation step & no bundling step required during development__ _(bundling step is only necessary to create app.js & vendor.js bundles for production)_
2222
- RELIABLE-HOT-RELOAD - dev server with hot-reload using [jspm-hmr](https://www.npmjs.com/package/jspm-hmr) - highly reliable and scalable for speed with increasing modules count (more in [Pros & Cons](#pros--cons)...)
2323
- TYPESCRIPT-TESTING - complete testing solution with Tape (blue-tape) - write and run tests only in TS - no transpilation required!
24-
- NO-IDE-NO-PROBLEM - you can use Notepad, just run `tsc --watch` in command line for fast incremental type-checking or `tsc` for project-wide type-check, there is no emit so it never breaks reliable hot-reload :)
24+
- NO-IDE-NO-PROBLEM - you can code in Notepad and run `tsc -p src --watch` in command line for fast incremental CLI type-checking or run `tsc -p src` for project-wide type-check, there is no JS emit so it never breaks reliable hot-reload :)
2525

2626
## Features
2727
- PRODUCTION-WORKFLOW - npm scripts for production bundling & deployment, github-hooks, linter, test runner etc.

0 commit comments

Comments
 (0)