@mui/internal-code-infra 0.0.4-canary.32 → 0.0.4-canary.33

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/internal-code-infra",
3
- "version": "0.0.4-canary.32",
3
+ "version": "0.0.4-canary.33",
4
4
  "author": "MUI Team",
5
5
  "description": "Infra scripts and configs to be used across MUI repos.",
6
6
  "license": "MIT",
@@ -120,8 +120,8 @@
120
120
  "unified": "^11.0.5",
121
121
  "yargs": "^18.0.0",
122
122
  "@mui/internal-babel-plugin-display-name": "1.0.4-canary.18",
123
- "@mui/internal-babel-plugin-minify-errors": "2.0.8-canary.27",
124
- "@mui/internal-babel-plugin-resolve-imports": "2.0.7-canary.36"
123
+ "@mui/internal-babel-plugin-resolve-imports": "2.0.7-canary.36",
124
+ "@mui/internal-babel-plugin-minify-errors": "2.0.8-canary.27"
125
125
  },
126
126
  "peerDependencies": {
127
127
  "@next/eslint-plugin-next": "*",
@@ -168,7 +168,7 @@
168
168
  "publishConfig": {
169
169
  "access": "public"
170
170
  },
171
- "gitSha": "c53e4890f90deaf9e50f0a2989a004cf0d7d7975",
171
+ "gitSha": "9f107efaadc47ab0bd7c7474b69c9099e5c46dd7",
172
172
  "scripts": {
173
173
  "build": "tsgo -p tsconfig.build.json",
174
174
  "typescript": "tsgo -noEmit",
@@ -1,5 +1,6 @@
1
1
  // TODO: change back to 'eslint/config' once https://github.com/eslint/rewrite/issues/425 is fixed
2
2
  import { defineConfig } from '@eslint/config-helpers';
3
+ import { EXTENSION_DTS } from '../extensions.mjs';
3
4
 
4
5
  const restrictedMethods = ['setTimeout', 'setInterval', 'clearTimeout', 'clearInterval'];
5
6
 
@@ -536,5 +537,12 @@ export function createCoreConfig(options = {}) {
536
537
  '@typescript-eslint/return-await': 'off',
537
538
  },
538
539
  },
540
+ {
541
+ name: 'mui-base/dts',
542
+ files: [`**/*${EXTENSION_DTS}`],
543
+ rules: {
544
+ '@typescript-eslint/consistent-type-imports': 'off',
545
+ },
546
+ },
539
547
  ]);
540
548
  }