@schoero/configs 1.0.20 → 1.0.21
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/eslint/typescript.js +2 -9
- package/package.json +1 -1
package/eslint/typescript.js
CHANGED
|
@@ -269,15 +269,8 @@ export const typescript = [
|
|
|
269
269
|
"eslint-plugin-typescript": eslintPluginTypeScript.plugin
|
|
270
270
|
},
|
|
271
271
|
files: [
|
|
272
|
-
"**/*.config.ts",
|
|
273
|
-
"**/*.
|
|
274
|
-
"**/*.config.cts",
|
|
275
|
-
"**/*.md/*.ts",
|
|
276
|
-
"**/*.md/*.tsx",
|
|
277
|
-
"**/*.md/*.mts",
|
|
278
|
-
"**/*.md/*.mtsx",
|
|
279
|
-
"**/*.md/*.cts",
|
|
280
|
-
"**/*.md/*.ctsx"
|
|
272
|
+
"**/*.config.{ts,mts,cts}",
|
|
273
|
+
"**/*.{md,mdx}/*.{ts,tsx,mjs,cjs,js,jsx,cts,mts,ctsx,mtsx}"
|
|
281
274
|
],
|
|
282
275
|
rules: {
|
|
283
276
|
...Object.fromEntries(
|
package/package.json
CHANGED