- Added detailed instructions for Plesk deployment in `.env.plesk` and `compose-plesk.yaml`. - Updated `.gitignore` to exclude Docker-related files. - Enhanced Dockerfiles for both frontend and backend to optimize for Plesk deployment. - Refined TypeScript configurations across various files for improved module resolution and compatibility. - Removed obsolete logger fixes summary file to streamline documentation.
26 lines
674 B
JSON
26 lines
674 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"noEmit": false,
|
|
"incremental": true,
|
|
"tsBuildInfoFile": "./tsconfig.build.tsbuildinfo",
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"removeComments": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@customer-portal/shared": ["../../packages/shared/dist/index"],
|
|
"@customer-portal/shared/*": ["../../packages/shared/dist/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "test", "**/*.spec.ts"],
|
|
"references": [
|
|
{ "path": "../../packages/shared" }
|
|
]
|
|
}
|