[01]Install dependencies
First, install the following dependencies:
@types/react-dom ``` </StepItem> <StepItem step='02' title='Configure TypeScript' content={` Then, add the following \`tsconfig.json\` file to the root of your project. `} > ```json filename="tsconfig.json { "compilerOptions": { "baseUrl": ".", "target": "ES2020", /* Bundler mode */ "moduleResolution": "bundler", "module": "ESNext", "jsx": "react-jsx", /* Aliases for intellisence */ "paths": { "@/*": ["src/*"] } }, "include": ["src", "rasengan-env.d.ts"], "extends": "./node_modules/rasengan/tsconfig.base.json" }
