Skip to content

Commit 46af2bc

Browse files
committed
fix(scripts-ts-node): disable swc which doesnt work with current ts-node
1 parent e47dac5 commit 46af2bc

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

scripts/ts-node/register.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ const tsNode = require('ts-node');
33
tsNode.register({
44
// https://github.com/TypeStrong/ts-node#skipproject - don't read tsconfig within ts-node
55
skipProject: true,
6-
swc: true,
6+
// @deprecated: we cannot use this until new version of ts-node is released https://github.com/TypeStrong/ts-node/pull/2062
7+
// swc: true,
78
});

0 commit comments

Comments
 (0)