🚀개발환경 세팅
1. typescript 설치
npm install -g typescript
2. 경량 web server 세팅
npm init
npm install --save-dev lite-server
3. package.json에 시작 스크립트 추가
"scripts": {
"start": "lite-server"
},
4. run
npm start
5. tsconfig.json
tsc --init
tsconfig.json
{
"compilerOptions": {
"target": "es6",
"module": "commonjs", // 웹 브라우저 환경 amd 사용
"moduleResolution": "node", // module이 amd면 classic 사용
"baseUrl": ".",
"paths": {
"*": ["node_modules/*"]
},
"sourceMap": true,
"outDir": "dist",
"downlevelIteration": true,
"esModuleInterop": true,
"noImplicitAny": false
},
"include": ["src/**/*"]
}
'네트워크 보안' 카테고리의 다른 글
[Three.js] Intro (0) | 2021.11.27 |
---|---|
[⚛️React.Js] 리액트 프로젝트 생성 (0) | 2021.11.24 |
[Node.js] Modules (0) | 2021.09.20 |
[Node.js] Node.js 설치 (0) | 2021.09.19 |
[Flutter] HTTP 통신 (0) | 2021.09.07 |