Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: typescript upgraded to v5 #5754

Merged
merged 7 commits into from
Mar 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
7 changes: 7 additions & 0 deletions .changeset/fast-grapes-lie.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@refinedev/airtable": patch
---

chore: TypeScript upgraded to [v5.x.x](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html). #5752

fixed: Some type errors are fixed due to the TypeScript upgrade.
7 changes: 7 additions & 0 deletions .changeset/five-emus-live.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@refinedev/react-hook-form": patch
---

chore: TypeScript upgraded to [v5.x.x](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html). #5752

fixed: Some type errors are fixed due to the TypeScript upgrade.
7 changes: 7 additions & 0 deletions .changeset/little-dingos-doubt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"create-refine-app": patch
---

chore: TypeScript upgraded to [v5.x.x](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html). #5752

fixed: Some type errors are fixed due to the TypeScript upgrade.
35 changes: 35 additions & 0 deletions .changeset/perfect-planets-breathe.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
"@refinedev/simple-rest": patch
"@refinedev/strapi-v4": patch
"@refinedev/supabase": patch
"@refinedev/ui-tests": patch
"@refinedev/ui-types": patch
"@refinedev/strapi": patch
"@refinedev/react-table": patch
"@refinedev/nextjs-router": patch
"@refinedev/react-router-v6": patch
"@refinedev/remix-router": patch
"@refinedev/nestjsx-crud": patch
"@refinedev/nestjs-query": patch
"@refinedev/mui": patch
"@refinedev/medusa": patch
"@refinedev/mantine": patch
"@refinedev/kbar": patch
"@refinedev/inferencer": patch
"@refinedev/hasura": patch
"@refinedev/graphql": patch
"@refinedev/devtools-ui": patch
"@refinedev/devtools-internal": patch
"@refinedev/devtools-server": patch
"@refinedev/devtools-shared": patch
"@refinedev/devtools": patch
"@refinedev/demo-sidebar": patch
"@refinedev/core": patch
"@refinedev/codemod": patch
"@refinedev/cli": patch
"@refinedev/chakra-ui": patch
"@refinedev/appwrite": patch
"@refinedev/ably": patch
---

chore: TypeScript upgraded to [v5.x.x](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html). #5752
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@
},
"[typescriptreact]": {
"editor.defaultFormatter": "biomejs.biome"
}
},
"typescript.tsdk": "node_modules/typescript/lib"
}
25 changes: 25 additions & 0 deletions cypress/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"include": [
"../**/cypress/**/*.ts",
"../**/cypress.config.ts"
],
"compilerOptions": {
"resolveJsonModule": true,
"esModuleInterop": false,
"sourceMap": false,
"types": ["cypress", "chai"],
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
}
}