반응형
https://www.openlogic.com/openjdk-downloads
https://www.jetbrains.com/ko-kr/idea/download/#section=windows
https://code.visualstudio.com/
npm install -g yarn
yarn --version
npx create-react-app vsp_front --template typescript
# npx create-react-app vsp_front
npm install --global yarn
cd vsp_front
npm start
VS Code에서 Prettier – Code formatter
기존 프로젝트에 Typescript 적용
#npm
npm install typescript @types/node @types/react @types/react-dom @types/jest
#yarn
yarn add typescript @types/node @types/react @types/react-dom @types/jest
1. jsconfig.json 파일 -> tsconfig.json 파일명 및 내용 변경
2.. jsx &. js 확장자 파일 ->. tsx 파일로 확장자 변경
tsconfig.json 기본 설정 내용
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
},
"include": [
"src"
]
}
반응형
'개발자정보' 카테고리의 다른 글
JavaScript (0) | 2023.05.05 |
---|---|
mariadb 문자열 합치기 (0) | 2023.03.18 |
React 학습자료 #001 (0) | 2023.01.13 |
Salesforce Not Exists (0) | 2022.11.13 |
요즘 관심있는 오픈소스 관련 사이트 정보 (0) | 2022.11.13 |