체인의정석

typescript 커스텀 모듈 만들어서 사용하기 본문

개발

typescript 커스텀 모듈 만들어서 사용하기

체인의정석 2021. 7. 21. 19:29
728x90
반응형

1. 커스텀 모듈 제작 후에 npm install 시키는 방법

우선 깃허브 주소를 넣어서 경로를 설정해주어도 되고,

로컬에 경로를 설정해 주어도 된다.

 

개발 순서에 따라서 우선 로컬 경로로 설정하고 개발한 후에

개발이 끝난 후 관리는 깃허브로 하고,

외부에 공가할 경우에 npm에 등록하여 사용하면 된다.

    "모듈이름": "로컬 경로"
    "모듈이름": "github:깃허브 경로"

 

 

2. 커스텀 모듈이 인식되지 않을 경우 아래와 같은 3가지 사항을 체크해 보자.

https://stackoverflow.com/questions/62749483/cannot-find-custom-module-in-typescript

 

Cannot Find Custom Module in Typescript

I created a little custom library to help make development a little easier for me. Below is the tscnfig and package.json file for this library. tsconfig { "compilerOptions": { /* Ba...

stackoverflow.com

ts config 파일에서 "declaration" 을 true로 설정해 준다.

dist 경로 안에 types property를 setting 해준다.

tsc를 이용하여 컴파일을 했을 때 에러가 나지 않는걸 확인한다.

728x90
반응형
Comments