- Updated .dockerignore to include additional files and directories for better Docker build context management. - Modified compose.yaml to add BASE_URL and change BUCKET_NAME to improve environment configuration. - Refactored Dockerfile to implement a multi-stage build for optimized image size and performance. - Updated package.json to include a new script for production Prisma generation. - Adjusted tsconfig files to refine project structure and exclude unnecessary directories. - Removed delta.mdx.txt file from OpenAI instructions to streamline the service. - Updated package-lock.json and package.json to upgrade Prisma and related dependencies for improved functionality.
33 lines
651 B
JSON
33 lines
651 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/nest-cli",
|
|
"collection": "@nestjs/schematics",
|
|
"sourceRoot": "src",
|
|
"language": "ts",
|
|
"compilerOptions": {
|
|
"watchAssets": true,
|
|
"deleteOutDir": true,
|
|
"builder": {
|
|
"type": "swc",
|
|
"options": {
|
|
"copyFiles": true,
|
|
"includeDotfiles": true
|
|
}
|
|
},
|
|
"typeCheck": true,
|
|
"assets": [
|
|
{
|
|
"include": "**/*.pug",
|
|
"outDir": "./dist/src/"
|
|
},
|
|
{
|
|
"include": "**/*.pem",
|
|
"outDir": "./dist/src/"
|
|
},
|
|
{
|
|
"include": "**/*.mdx",
|
|
"outDir": "./dist/src/OpenAI/Instructions"
|
|
}
|
|
]
|
|
}
|
|
}
|