wmg-random-nickname-generator
v1.2.3
Published
## package.json ```json "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./src/index.cjs" } } ```
Downloads
6
Readme
npm library boilerplate typescript
package.json
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./src/index.cjs"
}
}
tsconfig.json
해당 target과 module을 잘 설정해줘야 실제 라이브러리를 사용하는 부분에서 에러가 발생하지 않음
"target": "ES2021",
"module": "commonjs"