Compile with swc on twenty-server (#4863)

Experiment using swc instead of tsc (as we did the switch on
twenty-front)

It's **much** faster (at least 5x) but has stricter requirements.
I fixed the build but there's still an error while starting the server,
opening this PR for discussion.

Checkout the branch and try `nx build:swc twenty-server`

Read: https://docs.nestjs.com/recipes/swc#common-pitfalls
This commit is contained in:
Félix Malfait
2024-04-14 09:09:51 +02:00
committed by GitHub
parent f82b1ff9ef
commit 9aa24ed803
50 changed files with 600 additions and 152 deletions

View File

@ -7,6 +7,7 @@ import {
CreateDateColumn,
UpdateDateColumn,
ManyToOne,
Relation,
} from 'typeorm';
import { ObjectMetadataInterface } from 'src/engine/metadata-modules/field-metadata/interfaces/object-metadata.interface';
@ -79,7 +80,7 @@ export class ObjectMetadataEntity implements ObjectMetadataInterface {
@OneToMany(() => FieldMetadataEntity, (field) => field.object, {
cascade: true,
})
fields: FieldMetadataEntity[];
fields: Relation<FieldMetadataEntity[]>;
@OneToMany(
() => RelationMetadataEntity,
@ -88,7 +89,7 @@ export class ObjectMetadataEntity implements ObjectMetadataInterface {
cascade: true,
},
)
fromRelations: RelationMetadataEntity[];
fromRelations: Relation<RelationMetadataEntity[]>;
@OneToMany(
() => RelationMetadataEntity,
@ -97,12 +98,12 @@ export class ObjectMetadataEntity implements ObjectMetadataInterface {
cascade: true,
},
)
toRelations: RelationMetadataEntity[];
toRelations: Relation<RelationMetadataEntity[]>;
@ManyToOne(() => DataSourceEntity, (dataSource) => dataSource.objects, {
onDelete: 'CASCADE',
})
dataSource: DataSourceEntity;
dataSource: Relation<DataSourceEntity>;
@CreateDateColumn({ type: 'timestamptz' })
createdAt: Date;