Files
twenty/packages/twenty-server/nest-cli.json
Félix Malfait 85c04c8931 Performance improvement to dev xp (#9294)
The DX is not great when you need to do a lot of database
resets/command.

Should we disable Typescript validation to speed things up? With this
and caching database:reset takes 1min instead of 2 on my machine.


See also: https://github.com/typeorm/typeorm/issues/4136

And #9291 / #9293

---------

Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
2025-01-01 17:28:45 +01:00

29 lines
705 B
JSON

{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"compilerOptions": {
"builder": "swc",
"typeCheck": false,
"assets": [
{
"include": "**/serverless/drivers/constants/base-typescript-project/**",
"outDir": "dist/assets"
},
{
"include": "**/serverless/drivers/layers/*/package.json",
"outDir": "dist/assets"
},
{
"include": "**/serverless/drivers/layers/*/yarn.lock",
"outDir": "dist/assets"
},
{
"include": "**/serverless/drivers/layers/engine/**",
"outDir": "dist/assets"
}
],
"watchAssets": true
}
}