반응형
SMALL
typescript tsconfig.json
-
[TS] 모듈 이해하기TypeScript 2023. 4. 7. 10:00
타입스크립트 모듈 index.ts와 같은 소스파일을 모듈이라고 한다. export default키워드는 한 모듈이 내보내는 기능 중 오직 한개에만 붙일 수 있다. export default가 붙은 기능은 import문으로 불러올 때 중괄호{}없이 사용할 수 있다. # tsconfig.json { "compilerOptions": { "module": "commonjs", "esModuleInterop": true, "target": "ES5", "moduleResolution": "node", "outDir": "dist", "baseUrl": ".", "sourceMap": true, "downlevelIteration": true, "noImplicitAny": false, "paths": {"*"..