Skip to content

Commit 38b4278

Browse files
committed
fix: allow decorator in typescript
1 parent 4e2ff68 commit 38b4278

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/complexity/strategies/cyclomatic.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function fromJavaScript(path: string): number {
3737
function fromTypeScript(path: string): number {
3838
const content = readFileSync(path, { encoding: "utf8" });
3939
const babelResult = transformSync(content, {
40-
plugins: ["@babel/plugin-transform-typescript"],
40+
plugins: ["@babel/plugin-transform-typescript", ["@babel/plugin-proposal-decorators", { legacy: true }]],
4141
presets: ["@babel/preset-env"],
4242
});
4343
if (!babelResult) throw new Error(`Error while parsing file ${path}`);

0 commit comments

Comments
 (0)