Skip to content

purelledhand/cra-template-typescript-fast-build

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

8 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

cra-template-typescript-fast-build

npm version

The Create React App TypeScript template for improving build performance. ๐Ÿš€

Original Create React App README available here

Usage

yarn create react-app your-project-name --template typescript-fast-build
npx create-react-app your-project-name --template typescript-fast-build

Motivation

As the CRA project's scale grows and crosses the threshold, the build speed will exponentially slow. This is because the CRA built-in plugin in charge of the TS type check process is slow.

This template removes the plugin and provides a lighter and faster type check process, providing 10 times faster speed than the existing CRA built-in plugin.