Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- Backbone.js
- nodejs
- docker
- Machine Learning
- javascript
- deep learning
- AWS
- 기초 수학
- Switch
- Go
- Babel
- Redis
- python
- webpack
- php
- linux
- phpredis
- rabbitmq
- CentOS
- laravel
- Node
- nginx
- For
- Redux
- SQL
- React
- mariadb
- NCP
- fastapi
- 블레이드 템플릿
Archives
- Today
- Total
728x90
반응형
목록tsconfig (1)
개발일기

1. package.json 파일 생성 npm init -y yarn init -y 2. 타입스크립트 설치 npm install -D typescript yarn add -D typescript 3. tsconfig.json 파일 생성 tsc --init tsconfig.json 파일이 생성되면 컴파일 옵션에 포함되어져 있는 옵션들에 대한 주석이 달려있는 파일이 생성된다. 4. tsconfig의 주요 속성 { "compilerOptions": { "outDir": "./build/", "sourceMap": true, "noImplicitAny": true, "module": "commonjs", "target": "es5", "jsx": "react", }, "exclude": ["node_module..
Javascript/Typescript
2021. 10. 7. 11:18
728x90
반응형