tsconfig 환경설정
tsconfig.json 환경설정 기존 디폴트로 설정된 파일의 내용은 삭제후 아래와 같이 환경설정을 한다. { "compilerOptions" : { "target" : "ESNext" , "useDefineForClassFields" : true , "lib" : [ "DOM" , "DOM.Iterable" , "ESNext" ], "allowJs" : true , "skipLibCheck" : true , "esModuleInterop" : false , "allowSyntheticDefaultImports" : true , "strict" : true , "forceConsistentCasingInFileNames" : false , "module" : "ESNext" , "moduleResolution" : "node" , "resolveJsonModule" : true , "isolatedModules" : true , "noImplicitAny" : false , "noEmit" : false , "declaration" : true , "declarationDir" : "./types" , "jsx" : "preserve" , "baseUrl" : ".." , "paths...