feat: auth/gameToken 모듈로의 경로 변경 및 tsdown 설정 추가

This commit is contained in:
2026-01-18 06:39:43 +00:00
parent a9ddffa97c
commit 879104622a
11 changed files with 41 additions and 13 deletions
+18
View File
@@ -0,0 +1,18 @@
import { defineConfig } from 'tsdown';
export default defineConfig({
entry: {
index: 'src/index.ts',
'auth/gameToken': 'src/auth/gameToken.ts',
},
format: 'es',
outDir: 'dist',
dts: {
build: true,
},
sourcemap: true,
target: 'node22',
platform: 'node',
fixedExtension: false,
hash: false,
});