Skip to content

Commit ef7f95d

Browse files
authored
Add support for new blocks on lexical (#470)
1 parent 4f0c837 commit ef7f95d

File tree

75 files changed

+10219
-501
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+10219
-501
lines changed

eslint.config.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,15 @@ module.exports = tseslint.config(
2727
'gulpfile.js',
2828
'packages/*/entries.js',
2929
'packages/*/vite.config.ts',
30+
'packages/*/*.config.js',
31+
'packages/*/gulpfile.js',
32+
'packages/*/scripts/*.js',
33+
'packages/*/tailwind.config.js',
34+
'packages/*/webpack.config.js',
3035
'storybook/.storybook/*.ts',
3136
'storybook/.storybook/*.tsx',
3237
],
38+
maximumDefaultProjectFileMatchCount_THIS_WILL_SLOW_DOWN_LINTING: 15,
3339
},
3440
},
3541
},
@@ -123,6 +129,7 @@ module.exports = tseslint.config(
123129
'**/copyUntypedFiles.js',
124130
'**/helper.js',
125131
'**/extension.js',
132+
'**/scripts/*.js',
126133
],
127134
languageOptions: {
128135
sourceType: 'commonjs',

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,5 +103,8 @@
103103
"react": "^18.3.1",
104104
"react-dom": "^18.3.1",
105105
"typescript": "^5.8.3"
106+
},
107+
"dependencies": {
108+
"typescipt": "^1.0.0"
106109
}
107110
}

0 commit comments

Comments
 (0)