@egy186/eslint-config 4.2.0 → 4.2.1
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/dist/vitest.d.ts +5 -0
- package/dist/vitest.js +5 -0
- package/package.json +1 -1
package/dist/vitest.d.ts
CHANGED
|
@@ -269,6 +269,11 @@ declare const config: {
|
|
|
269
269
|
readonly 'vitest/valid-title': "error";
|
|
270
270
|
readonly 'vitest/warn-todo': "error";
|
|
271
271
|
};
|
|
272
|
+
readonly settings: {
|
|
273
|
+
readonly vitest: {
|
|
274
|
+
readonly typecheck: true;
|
|
275
|
+
};
|
|
276
|
+
};
|
|
272
277
|
};
|
|
273
278
|
export { config as vitest };
|
|
274
279
|
export default config;
|
package/dist/vitest.js
CHANGED