[바미] Typescript로 블록체인을 만들어 보자.
·
이것저것/블록체인
Typescript로 블록체인 만들기 VSCode TypeScript 준비 tsconfig.json 생성 (파일을 쓸 때에는 주석의 한글 설명을 삭제해야 정상 실행됩니다.) { "compilerOptions": { //컴파일 옵션 설정 "module": "commonjs", "target": "es2015", "sourceMap": true }, "include": ["index.ts"], //컴파일과정에서 포함할 파일 "exclude": ["node_modules"], //컴파일과정에서 제외 } index.ts 생성 console.log("test"); 터미널 실행 yarn init 실행 시 package.json 파일이 생성됩니다. yarn init 4. 생성된 package.json 파일 수정 Ty..