mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-26 13:42:44 +03:00
7e03419c16
- add layer for lambda execution - add layer for local execution - add package resolve for the monaco editor - add route to get installed package for serverless functions - add layer versioning
25 lines
565 B
JSON
25 lines
565 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/nest-cli",
|
|
"collection": "@nestjs/schematics",
|
|
"sourceRoot": "src",
|
|
"compilerOptions": {
|
|
"builder": "swc",
|
|
"typeCheck": true,
|
|
"assets": [
|
|
{
|
|
"include": "**/serverless/drivers/layers/*/package.json",
|
|
"outDir": "dist/src"
|
|
},
|
|
{
|
|
"include": "**/serverless/drivers/layers/*/yarn.lock",
|
|
"outDir": "dist/src"
|
|
},
|
|
{
|
|
"include": "**/serverless/drivers/layers/engine/**",
|
|
"outDir": "dist/src"
|
|
}
|
|
],
|
|
"watchAssets": true
|
|
}
|
|
}
|