From 15cb5cc8ef89740555f26bedfc708958060ea504 Mon Sep 17 00:00:00 2001 From: Andras Csizmadia Date: Sat, 6 Apr 2024 17:06:48 +0200 Subject: [PATCH] Fixed lint warning --- babel.config.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/babel.config.js b/babel.config.js index b88c253..65f58da 100644 --- a/babel.config.js +++ b/babel.config.js @@ -1,4 +1,8 @@ -/** @type {import('@babel/core').ConfigFunction} */ +/** + * Babel configuration function. + * @param {import('@babel/core').ConfigAPI} api - Configuration API reference. + * @returns {import('@babel/core').TransformOptions} Configuration options. + */ const config = (api) => { api.cache(false); const presets = ['@babel/preset-env'];