react-ts-runtime
v0.2.16
Published
Build, run and test tools for React projects written in TypeScript.
Downloads
46
Readme
React TypeScript Runtime
React TS Runtime is a package that contains all the tooling you need to build your React project written in TypeScript.
Setup
mkdir yourproject
cd yourproject
npm init -y
npm install react-ts-runtime --save-dev
Create an src/index.tsx
Create an src/index.html
Set the scripts section to the following in your package.json
{
"start": "react-ts-runtime run",
"build": "react-ts-runtime build",
}
Run npm start
to start the project up in development mode.
Run npm run build
to build the project.