1. init yarn init 2. src/index.ts 생성 3. 설치 yarn add @babel/{node,cli,core} nodemon 4. package.json "scripts": { "dev": "nodemon --exec babel-node src/index.ts" } 5. nodemon.json 파일 생성 (root에) nodemon이 감시해야 할 파일의 확장자 지정 { "ext": "js graphql" } 6. yarn add nexus yarn add graphql 7. import 인식못해서 yarn add @babel/preset-env .babelrc { "presets": ["@babel/preset-env"] } 8. 아.. 근데 ts-node로 하는거네 ts는 yar..