Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pcan committed Dec 21, 2024
1 parent a67fd4e commit 07d31f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export async function load(url, context, nextLoad) {

/* Can/should this handle inputSourceMap? */
const {code} = await babel.transformAsync(source, {
presets: ["@babel/preset-typescript"],
presets: ['@babel/preset-typescript'],
babelrc: false,
configFile: false,
filename,
Expand All @@ -69,7 +69,7 @@ export async function load(url, context, nextLoad) {
},
plugins: [
['babel-plugin-istanbul', babelConfig],
["@babel/plugin-syntax-decorators", { decoratorsBeforeExport: true }]
['@babel/plugin-syntax-decorators', {decoratorsBeforeExport: true}]
]
});

Expand Down

0 comments on commit 07d31f9

Please sign in to comment.