Assist_Design/packages/domain/tsconfig.json
T. Narantuya 001de16e38 Add domain types and utilities for customer portal
- Introduced new TypeScript types for catalog products, including Internet, SIM, and VPN plans, along with their respective addons and installation options.
- Created a new domain package with essential configurations, including package.json and tsconfig.json for TypeScript support.
- Added common types and utility functions for type safety and data handling across the application.
- Established a structured export pattern for domain types, enhancing organization and accessibility for future development.
2025-09-17 18:43:31 +09:00

18 lines
430 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
// Library-specific overrides
"composite": true,
"noEmit": false,
"declaration": true,
"declarationMap": true,
"outDir": "./dist",
"rootDir": "./src",
"removeComments": false,
"moduleResolution": "node",
"module": "CommonJS"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
}