Skip to content

Commit f534aa7

Browse files
[v14] refactor: remove flow types (#1845)
1 parent 482875d commit f534aa7

File tree

11 files changed

+5
-1933
lines changed

11 files changed

+5
-1933
lines changed

.flowconfig

Lines changed: 0 additions & 63 deletions
This file was deleted.

.prettierignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
node_modules/
22
.yarn
3-
4-
flow-typed/

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The project uses `yarn` for dependency management and script execution.
2121
- **Type Check:** `yarn typecheck` (Runs TypeScript compiler)
2222
- **Format Check:** `yarn prettier`
2323
- **Validate All:** `yarn validate` (Runs Prettier, ESLint, Typecheck, and Tests in sequence)
24-
- **Build Project:** `yarn build` (Cleans, builds JS with Babel, builds TS types, and copies Flow types)
24+
- **Build Project:** `yarn build` (Cleans, builds JS with Babel, and builds TS types)
2525

2626
## Development Conventions
2727

CLAUDE.md

Lines changed: 0 additions & 137 deletions
This file was deleted.

babel.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ module.exports = {
1212
],
1313
'@babel/preset-react',
1414
'@babel/preset-typescript',
15-
'@babel/preset-flow',
1615
],
1716
plugins: ['@babel/plugin-transform-strict-mode'],
1817
env: {

eslint.config.mjs

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,7 @@ import jest from 'eslint-plugin-jest';
55

66
export default [
77
{
8-
ignores: [
9-
'flow-typed/',
10-
'build/',
11-
'experiments-rtl/',
12-
'website/',
13-
'eslint.config.mjs',
14-
'jest-setup.ts',
15-
],
8+
ignores: ['build/', 'experiments-rtl/', 'website/', 'eslint.config.mjs', 'jest-setup.ts'],
169
},
1710
...callstackConfig,
1811
...tseslint.configs.strict,

0 commit comments

Comments
 (0)