Skip to content
This repository was archived by the owner on Dec 1, 2019. It is now read-only.

Commit 3783b6c

Browse files
committed
Merge pull request #144 from mattdistefano/patch-1
Fixes a couple README typos
2 parents 5845a6c + c2541a9 commit 3783b6c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ npm install awesome-typescript-loader --save-dev
2121
Some of them are quite big and I wanted to have full control on how my files are compiled. There are three major points:
2222

2323
1) awesome-typescript-loader (atl) uses dependency resolution to build modules dependency graph at early stages.
24-
This speeds up build process in some corner cases (minimizes module resoltions, mimizes `createProgram` calls),
24+
This speeds up build process in some corner cases (minimizes module resolutions, minimizes `createProgram` calls),
2525
but adds a lot of additional complexity. Also it can re-emit all related files which is also useful in some corner cases.
2626

27-
2) atl has first-class integration with Babel and enables caching possibilities. This can be useful for those who uses Typescript with Babel.
28-
When `useBabel` and `useCache` flags are enabled, typescript's emit will be transplied with Babel and cached.
27+
2) atl has first-class integration with Babel and enables caching possibilities. This can be useful for those who use Typescript with Babel.
28+
When `useBabel` and `useCache` flags are enabled, typescript's emit will be transpiled with Babel and cached.
2929
So next time if source file (+environment) has the same checksum we can totally skip typescript's and babel's transpiling.
3030
This significantly reduces build time in this scenario.
3131

0 commit comments

Comments
 (0)