2025-08-20 18:02:50 +09:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2025-10-03 14:26:55 +09:00
|
|
|
"target": "ES2022",
|
|
|
|
|
"module": "ESNext",
|
2025-09-17 18:43:43 +09:00
|
|
|
"lib": ["ES2022"],
|
2025-09-19 16:34:10 +09:00
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
2025-10-03 17:43:57 +09:00
|
|
|
"composite": true,
|
2025-10-03 14:26:55 +09:00
|
|
|
"outDir": "./dist",
|
|
|
|
|
"rootDir": ".",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"verbatimModuleSyntax": false
|
2025-08-20 18:02:50 +09:00
|
|
|
},
|
2025-10-03 14:26:55 +09:00
|
|
|
"include": [
|
|
|
|
|
"billing/**/*",
|
|
|
|
|
"subscriptions/**/*",
|
|
|
|
|
"payments/**/*",
|
|
|
|
|
"sim/**/*",
|
|
|
|
|
"orders/**/*",
|
|
|
|
|
"catalog/**/*",
|
|
|
|
|
"common/**/*",
|
2025-10-03 16:37:52 +09:00
|
|
|
"auth/**/*",
|
2025-10-03 14:26:55 +09:00
|
|
|
"toolkit/**/*",
|
|
|
|
|
"index.ts"
|
|
|
|
|
],
|
|
|
|
|
"exclude": ["node_modules", "dist"]
|
2025-09-18 12:34:26 +09:00
|
|
|
}
|