Skip to content

Commit 30edb48

Browse files
fix: keep ts-node section of tsconfig
1 parent 3166b11 commit 30edb48

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

experimental/packages/otlp-exporter-base/tsconfig.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,12 @@
1919
{
2020
"path": "../otlp-transformer"
2121
}
22-
]
22+
],
23+
"ts-node": {
24+
"experimentalResolver": true,
25+
"compilerOptions": {
26+
"module": "commonjs",
27+
"moduleResolution": "node10"
28+
}
29+
}
2330
}

scripts/update-ts-configs.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ const tsConfigMergeKeys = [
4040
'compilerOptions',
4141
'include',
4242
'files',
43+
"ts-node",
4344
];
4445
// Make `extends` the first field.
4546
const tsConfigPriorityKeys = ['extends'];

0 commit comments

Comments
 (0)