반응형
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 |
31 |
Tags
- Cypress
- csr
- svelte
- ts error
- api test
- msw
- e2e
- https
- caching
- vue3
- Testing
- custom command
- CloudFlare
- TLS
- import.meta.env
- vue-cli
- typeScript
- aws
- SSR
- http3
- rendering
- 비동기
- CSS
- devtools
- vue
- web vital
- QUIC
- ViTE
- 선택자
- JavaScript
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