Folder Structure
After creation, your project should look like this:
__tests__/
CheckboxWithLabel-test.tsx
.env
.eslintrc.cjs
.gitignore
jest.config.ts
node_modules/
package.json
postcss.config.cjs
README.md
rome.json
src/
App.css
CheckboxWithLabel.tsx
index.tsx
reportWebVitals.ts
types/
index.d.ts
App.tsx
index.html
logo.svg
store/
CountAtom.ts
vite-env.d.ts
stylelint.config.cjs
tsconfig.json
turbo.json
vite.config.js
webpack/
webpack.dev.mjs
webpack.prod.mjs
For the project to build, these files must exist with these exact filenames:
src/index.html
is the page template.src/index.tsx
is the js/ts entry point.tsconfig.json
typescript (tsc) configuration.
You can delete or rename the other files.
If you have Git installed and you selected initialize git repository during template selection, then a new repository will be initialized resulting in an additional top-level .git
directory.