- Changed TypeScript target and library settings in tsconfig files to align with ESNext standards. - Updated pnpm version in GitHub workflows for better dependency management. - Modified Dockerfile to reflect the updated pnpm version. - Adjusted import statements across various domain modules to include file extensions for consistency and compatibility. - Cleaned up TypeScript configuration files for improved clarity and organization.
30 lines
604 B
JSON
30 lines
604 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"outDir": "./dist",
|
|
"rootDir": ".",
|
|
"tsBuildInfoFile": "./dist/.tsbuildinfo",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext"
|
|
},
|
|
"include": [
|
|
"auth/**/*",
|
|
"billing/**/*",
|
|
"catalog/**/*",
|
|
"common/**/*",
|
|
"customer/**/*",
|
|
"dashboard/**/*",
|
|
"mappings/**/*",
|
|
"orders/**/*",
|
|
"payments/**/*",
|
|
"providers/**/*",
|
|
"sim/**/*",
|
|
"subscriptions/**/*",
|
|
"support/**/*",
|
|
"toolkit/**/*",
|
|
"index.ts"
|
|
],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|