Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/heimdallrj/cra-template-jetpack-typescript
Jetpack - A custom typescript template for Create React App
https://github.com/heimdallrj/cra-template-jetpack-typescript
cra create-react-app create-react-app-typescript jetpack react reactjs typescript
Last synced: 1 day ago
JSON representation
Jetpack - A custom typescript template for Create React App
- Host: GitHub
- URL: https://github.com/heimdallrj/cra-template-jetpack-typescript
- Owner: heimdallrj
- Created: 2022-09-11T17:11:28.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-09T11:24:40.000Z (about 2 years ago)
- Last Synced: 2024-04-25T15:21:13.922Z (9 months ago)
- Topics: cra, create-react-app, create-react-app-typescript, jetpack, react, reactjs, typescript
- Language: TypeScript
- Homepage:
- Size: 108 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cra-template-jetpack-typescript
This is a custom template for [Create React App](https://github.com/facebook/create-react-app).
You can use this template with `npx create-react-app my-react-app --template jetpack-typescript`
For more information, please refer to:
- [Getting Started](https://create-react-app.dev/docs/getting-started) – How to create a new app.
- [User Guide](https://create-react-app.dev) – How to develop apps bootstrapped with Create React App.## Setting up `Absolute Imports`
See [Docs](https://create-react-app.dev/docs/importing-a-component/#absolute-imports)
## Configure `Storybook`
All the dependencies have installed in the bootstrap process. Just update the `package.json` as below;
```json
{
"scripts": {
..
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
}
}
```