mirror of
https://github.com/jung-geun/NFD2NFC.git
synced 2026-06-21 04:15:14 +09:00
tsconfig.cli.json + tsconfig.lib.json outDir을 out/cli→out, out/lib→out으로 변경. bin out/cli/index.js, main out/lib/index.js 경로와 일치시킴. files에서 resources/** 제거 (아이콘 파일 npm 사용자 불필요). files에 out/core/** 추가, !out/core/__tests__/**로 테스트 파일 제외. tarball 크기 1.8MB → 8.4KB. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
15 lines
355 B
JSON
15 lines
355 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"outDir": "out",
|
|
"rootDir": "src",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"types": ["node"]
|
|
},
|
|
"include": ["src/lib/**/*", "src/core/**/*"],
|
|
"exclude": ["node_modules", "out", "dist", "src/core/__tests__"]
|
|
}
|