이 프로젝트는 졸업작품에서 사용할 카메라 제작을 위해 시도하던 프로젝트입니다.
남겨둔 이유: 추후에 EXPO 사용
사용 스택:
- EXPO
npx create-expo --example with-typescript
TypeScript is a superset of JavaScript which gives you static types and powerful tooling in Visual Studio Code including autocompletion and useful inline warnings for type errors.
- Create a project:
npx create-expo --example with-typescript
cd
into the project
- Create a blank TypeScript config:
touch tsconfig.json
- Run
yarn start
ornpm run start
to automatically configure TypeScript - Rename files to TypeScript,
.tsx
for React components and.ts
for plain typescript files
💡 You can disable the TypeScript setup in Expo CLI with the environment variable
EXPO_NO_TYPESCRIPT_SETUP=1 expo start