2025-08-20 18:02:50 +09:00
|
|
|
{
|
2025-10-08 18:48:14 +09:00
|
|
|
"extends": "../../tsconfig.base.json",
|
2025-08-20 18:02:50 +09:00
|
|
|
"compilerOptions": {
|
2025-10-03 17:43:57 +09:00
|
|
|
"composite": true,
|
2025-12-12 13:10:29 +09:00
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
2025-10-03 14:26:55 +09:00
|
|
|
"outDir": "./dist",
|
|
|
|
|
"rootDir": ".",
|
2025-12-12 13:10:29 +09:00
|
|
|
"sourceMap": true,
|
|
|
|
|
"tsBuildInfoFile": "./dist/.tsbuildinfo"
|
2025-08-20 18:02:50 +09:00
|
|
|
},
|
2025-10-03 14:26:55 +09:00
|
|
|
"include": [
|
2025-10-08 18:48:14 +09:00
|
|
|
"auth/**/*",
|
2025-10-03 14:26:55 +09:00
|
|
|
"billing/**/*",
|
|
|
|
|
"catalog/**/*",
|
|
|
|
|
"common/**/*",
|
2025-10-08 18:48:14 +09:00
|
|
|
"customer/**/*",
|
2025-10-07 17:38:39 +09:00
|
|
|
"dashboard/**/*",
|
2025-10-08 18:48:14 +09:00
|
|
|
"mappings/**/*",
|
|
|
|
|
"orders/**/*",
|
|
|
|
|
"payments/**/*",
|
2025-12-10 13:59:41 +09:00
|
|
|
"providers/**/*",
|
2025-10-08 18:48:14 +09:00
|
|
|
"sim/**/*",
|
|
|
|
|
"subscriptions/**/*",
|
2025-11-18 14:41:44 +09:00
|
|
|
"support/**/*",
|
2025-10-03 14:26:55 +09:00
|
|
|
"toolkit/**/*",
|
|
|
|
|
"index.ts"
|
|
|
|
|
],
|
2025-12-10 13:59:41 +09:00
|
|
|
"exclude": ["node_modules", "dist"]
|
2025-09-18 12:34:26 +09:00
|
|
|
}
|