2025-08-20 18:02:50 +09:00
|
|
|
{
|
2025-12-12 14:50:12 +09:00
|
|
|
"extends": "../../tsconfig.node.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,
|
2025-12-26 17:27:22 +09:00
|
|
|
"tsBuildInfoFile": "./dist/.tsbuildinfo",
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"#toolkit/*": ["./toolkit/*"],
|
|
|
|
|
"#internal/services/providers/salesforce": ["./services/providers/salesforce/index.ts"]
|
|
|
|
|
}
|
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/**/*",
|
2025-12-25 13:20:45 +09:00
|
|
|
"services/**/*",
|
2025-12-17 14:07:22 +09:00
|
|
|
"checkout/**/*",
|
2025-10-03 14:26:55 +09:00
|
|
|
"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/**/*",
|
2025-12-23 11:36:44 +09:00
|
|
|
"notifications/**/*",
|
2025-12-22 18:59:38 +09:00
|
|
|
"opportunity/**/*",
|
2025-12-23 11:36:44 +09:00
|
|
|
"salesforce/**/*",
|
2025-10-08 18:48:14 +09:00
|
|
|
"orders/**/*",
|
|
|
|
|
"payments/**/*",
|
2025-12-10 13:59:41 +09:00
|
|
|
"providers/**/*",
|
2025-12-15 11:10:50 +09:00
|
|
|
"realtime/**/*",
|
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
|
|
|
}
|