Typescript- tsconfig의 대상은 무엇입니까? 저는 Typescript가 처음입니다. tsconfig.json의 Target은 무엇을 의미합니까? { "compilerOptions": { "sourceMap": true, "target": "es5", "module": "commonjs", "jsx": "react", "moduleResolution": "classic", "lib": [ "es2015", "dom", "es2017" ] } } 저는 Typescript가 처음입니다. tsconfig.json의 Target은 무엇을 의미합니까? target주어진 TypeScript에서 내보내야 하는 JavaScript 대상을 나타냅니다 . 예: target:es5 ()=>null될 것입니다 f..