- Introduced new controllers for internet eligibility and service health checks to enhance backend functionality. - Created service modules for internet, SIM, and VPN offerings, improving organization and maintainability. - Developed various components for internet and SIM configuration, including forms and plan cards, to streamline user interactions. - Implemented hooks for managing service configurations and eligibility checks, enhancing frontend data handling. - Updated utility functions for pricing and catalog operations to support new service structures and improve performance.
36 lines
734 B
JSON
36 lines
734 B
JSON
{
|
|
"extends": "../../tsconfig.node.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": ".",
|
|
"sourceMap": true,
|
|
"tsBuildInfoFile": "./dist/.tsbuildinfo"
|
|
},
|
|
"include": [
|
|
"auth/**/*",
|
|
"billing/**/*",
|
|
"services/**/*",
|
|
"checkout/**/*",
|
|
"common/**/*",
|
|
"customer/**/*",
|
|
"dashboard/**/*",
|
|
"mappings/**/*",
|
|
"notifications/**/*",
|
|
"opportunity/**/*",
|
|
"salesforce/**/*",
|
|
"orders/**/*",
|
|
"payments/**/*",
|
|
"providers/**/*",
|
|
"realtime/**/*",
|
|
"sim/**/*",
|
|
"subscriptions/**/*",
|
|
"support/**/*",
|
|
"toolkit/**/*",
|
|
"index.ts"
|
|
],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|