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