Assist_Design/packages/domain/tsconfig.json
barsa 8b78d890e4 Add support directory to TypeScript configuration
- Included "support/**/*" in the tsconfig.json paths to ensure TypeScript recognizes and compiles files within the support directory, enhancing module integration and project structure.
2025-11-18 14:41:44 +09:00

28 lines
574 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"composite": true,
"outDir": "./dist",
"rootDir": ".",
"tsBuildInfoFile": "./dist/.tsbuildinfo"
},
"include": [
"auth/**/*",
"billing/**/*",
"catalog/**/*",
"common/**/*",
"customer/**/*",
"dashboard/**/*",
"providers/**/*",
"mappings/**/*",
"orders/**/*",
"payments/**/*",
"sim/**/*",
"subscriptions/**/*",
"support/**/*",
"toolkit/**/*",
"index.ts"
],
"exclude": ["node_modules", "dist", "**/*.spec.ts", "**/*.test.ts"]
}