@qlik/eslint-config 1.1.6 → 1.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.d.ts +2 -2
package/package.json
CHANGED
package/src/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import jest from "./configs/jest.js";
|
|
|
4
4
|
import playwright from "./configs/playwright.js";
|
|
5
5
|
import react, { reactJS, reactTS } from "./configs/react.js";
|
|
6
6
|
import recommended, { recommendedJS, recommendedTS } from "./configs/recommended.js";
|
|
7
|
-
import svelte from "./configs/svelte.js";
|
|
7
|
+
import svelte, { svelteJS } from "./configs/svelte.js";
|
|
8
8
|
import vitest from "./configs/vitest.js";
|
|
9
9
|
import compose from "./utils/compose.js";
|
|
10
10
|
|
|
@@ -23,4 +23,4 @@ declare namespace qlikEslintConfig {
|
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
export default qlikEslintConfig;
|
|
26
|
-
export { cjsJS, cjsTS, esmJS, esmTS, reactJS, reactTS, recommendedJS, recommendedTS };
|
|
26
|
+
export { cjsJS, cjsTS, esmJS, esmTS, reactJS, reactTS, recommendedJS, recommendedTS, svelteJS };
|