반응형
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
- typeScript
- e2e
- ts error
- csr
- custom command
- vue-cli
- 선택자
- vue
- rendering
- JavaScript
- SSR
- svelte
- QUIC
- Testing
- https
- CSS
- devtools
- ViTE
- Cypress
- import.meta.env
- CloudFlare
- msw
- TLS
- aws
- api test
- 비동기
- vue3
- http3
- caching
- web vital
Archives
- Today
- Total
목록TypScript (1)
Develop Note by J.S.
[Typscript] tsconfig.json
Typescript로 개발할 때 tsconfig.json에서 주로 사용되는 속성에 관하여 정리해보았습니다. 1. CompilerOptions { "compilerOptions": { "target": "es5", "module": "commonjs", "allowJs": true, "composite": true, "noImplicitAny": true, "removeComments": true, "baseUrl": "./" "paths": { "@/*": ["./src/*"] } "outFile": "./", "outDir": "./", "rootDir": "./", } } target : Compile시에 Typescript 코드를 어떤 버전의 javascript 코드로 변경할지에 대한 설정 modu..
Language/Typescript
2023. 7. 5. 10:06