forked from refinedev/refine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: typescript upgraded to v5 (refinedev#5754)
* chore: upgrade typescript to v5 * test(e2e): disable sourcemaps for cypress builds * test(e2e): update tsconfig for cypress * chore(mern-dashboard-client): fix fallback values --------- Co-authored-by: Ali Emir Şen <[email protected]>
- Loading branch information
1 parent
ae7e593
commit 56ed144
Showing
312 changed files
with
19,048 additions
and
4,069 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |
Oops, something went wrong.