wash-service-sdk 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/tsconfig.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "compilerOptions": {
3
+ /* 기본 옵션 */
4
+ "target": "ES2020", // 코드를 컴파일할 ECMAScript 버전
5
+ "module": "CommonJS", // 모듈 시스템 (Node.js는 CommonJS)
6
+ "strict": true, // 모든 엄격한 타입-검사 옵션 활성화
7
+ "esModuleInterop": true, // CommonJS 모듈을 ES 모듈처럼 import 가능하게 함
8
+ "skipLibCheck": true, // 의존성 라이브러리의 타입 검사 건너뛰기
9
+ "forceConsistentCasingInFileNames": true,
10
+
11
+ /* 라이브러리/SDK 빌드용 (필수) */
12
+ "declaration": true, // .d.ts 타입 정의 파일 생성
13
+ "outDir": "./dist", // 컴파일된 JS 파일이 저장될 폴더
14
+ "rootDir": "./src", // TypeScript 소스 코드의 루트 폴더
15
+
16
+ /* 모듈 해석 */
17
+ "moduleResolution": "node",
18
+ "baseUrl": "./", // 기준 경로
19
+
20
+ /* 소스맵 (디버깅용 - 선택 사항) */
21
+ // "sourceMap": true,
22
+ },
23
+ "include": [
24
+ "src" // 컴파일할 파일이 있는 폴더
25
+ ],
26
+ "exclude": [
27
+ "node_modules", // 컴파일에서 제외할 폴더
28
+ "dist"
29
+ ]
30
+ }
Binary file