Assist_Design/packages/domain/tsconfig.json
barsa dc32e7aa07 feat: Enhance Public VPN Plans view with marketing content and new components
- Added detailed service highlights, how it works steps, and FAQs to the Public VPN Plans view.
- Introduced new components: CtaButton, FeaturedServiceCard, ProcessStep, ServiceCard, ServiceShowcaseCard, TrustBadge, TrustIndicators, HowItWorks, ServiceCTA, and ServiceFAQ for improved layout and functionality.
- Implemented a new design for the landing page with enhanced visuals and user engagement elements.
- Updated the VPN plans section to include a more informative and visually appealing layout.
2026-01-13 18:19:58 +09:00

42 lines
927 B
JSON

{
"extends": "../../tsconfig.node.json",
"compilerOptions": {
"composite": true,
"declaration": true,
"declarationMap": true,
"outDir": "./dist",
"rootDir": ".",
"sourceMap": true,
"tsBuildInfoFile": "./dist/.tsbuildinfo",
"baseUrl": ".",
"paths": {
"#toolkit/*": ["./toolkit/*"],
"#internal/services/providers/salesforce": ["./services/providers/salesforce/index.ts"]
}
},
"include": [
"address/**/*",
"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"]
}