We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e2ff68 commit 38b4278Copy full SHA for 38b4278
src/lib/complexity/strategies/cyclomatic.ts
@@ -37,7 +37,7 @@ function fromJavaScript(path: string): number {
37
function fromTypeScript(path: string): number {
38
const content = readFileSync(path, { encoding: "utf8" });
39
const babelResult = transformSync(content, {
40
- plugins: ["@babel/plugin-transform-typescript"],
+ plugins: ["@babel/plugin-transform-typescript", ["@babel/plugin-proposal-decorators", { legacy: true }]],
41
presets: ["@babel/preset-env"],
42
});
43
if (!babelResult) throw new Error(`Error while parsing file ${path}`);
0 commit comments